Developer Theory
T or F
What is CI/CD?
T, T, T
Continuous integration workflow
T or F
All true
CD takes the idea of automation on step further and automatically deploys the new code following successful testing, eliminating any manual steps.
All tue
______ is an open source tech which allows you to create apps based on either Linux or Windows containers.
Docker
A _____ is a lightweight standalone executable software apckage which includes everything the software needs to run code, runtime env., libraries, env settings.
containers
______ is a full managed build service which runs a ser of commands that you define (ie: compiles code, run tests, and produces artifacts that you aready to deploy)
CodeBuild
What do these commands do?
docker build -t myimagerepo
docker tag myimagerepo:latest
They are docker commands to build, tag (apply an alias) and push your docker image to the ECR repo
use _____ to define the build commands and settings used by CodeBUild to run your build
buildspec.yml
You can override the settings in _____ by adding your own commands i the console when you launch the build.
buildspec.yml
if your build fails, check the build logs in the _____ console and you can slo view the full ____ log in cloudwatch
codebuild