Reputation: 7996
I want to experiment with AWS CodeBuild. I want to run the latest docker build container and log in so I can see what's installed, and try manually installing dependencies before automating the process. How can I do this?
Upvotes: 1
Views: 991
Reputation: 9936
You can download the curated image Dockerfiles from this GitHub repo. You can then inspect them to see what is preinstalled, or build them yourself and experiment.
Upvotes: 3
Reputation: 1650
CodeBuild doesn't allow you to log into a build container. You can experiment by configuring your project's buildspec in the AWS console and run a build, before you commit the buildspec to your source code.
Upvotes: 1