You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our current CircleCI config just runs the app in CircleCI's ruby image. We ant to make sure that CircleCI can also build our own Docker containers so we will know if there's a problem with our builds.
The text was updated successfully, but these errors were encountered:
The Circle CI documentation suggests using pip to install AWS CLI but it seems we can only install AWS CLI v1 using that.
apk add py3-pip=20.1.1-r0
pip install awscli>=1.0
The images provided by Circle CI for building Docker images, seem to be based out of Alpine, but installing AWS CLI v2 might be a bit tricky, given that Alpine uses Musl, and AWS CLI v2 is compiled against glibc.
But it does seem like we can run prebuilt images of AWS CLI v2 within Circle CI, and use them for any AWS related activities in the job, the usage would be something like:
Our current CircleCI config just runs the app in CircleCI's ruby image. We ant to make sure that CircleCI can also build our own Docker containers so we will know if there's a problem with our builds.
The text was updated successfully, but these errors were encountered: