We should now be ready to push our application to the AWS CodeCommit repo and the Amazon Elastic Container Repository
The following sets a new origin for the application repo to CodeCommit unicorn-store, configures a credential helper needed for CodeCommit, and pushes the source code to the repo. This step is necessary for an automated pipeline as CodeBuild will build the application directly from this repo.
cd ~/environment/modernization-workshop/git remote set-url origin https://git-codecommit.us-west-2.amazonaws.com/v1/repos/modernization-workshopgit config --global credential.helper '!aws codecommit credential-helper $@'git config --global credential.UseHttpPath truegit push origin master
If successfully, you should see a similar message to the one below.
Counting objects: 9525, done.Compressing objects: 100% (5900/5900), done.Writing objects: 100% (9525/9525), 33.75 MiB | 2.65 MiB/s, done.Total 9525 (delta 3240), reused 9525 (delta 3240)remote: processingTo https://git-codecommit.us-west-2.amazonaws.com/v1/repos/modernization-workshop* [new branch] master -> master
Now it's time to compile and package your code. Copy and paste the below code into Cloud9's terminal window
cd ~/environment/modernization-workshop/appdocker build -t modernization-workshop .docker tag modernization-workshop:latest $(aws ecr describe-repositories --repository-name modernization-workshop --query=repositories[0].repositoryUri --output=text):latesteval $(aws ecr get-login --no-include-email)docker push $(aws ecr describe-repositories --repository-name modernization-workshop --query=repositories[0].repositoryUri --output=text):latest
If you watch the screen you should see the docker image build process animating the terminal.
If successfully, you should see the message as below.
The push refers to repository [1234567891011.dkr.ecr.us-west-2.amazonaws.com/modernization-workshop]8d2f7b95f78d: Pushed82852e5eaa9d: Pushed9df07df94e41: Pushedaa90bcce39de: Pushedd9ff549177a9: Pushedlatest: digest: sha256:4229b5fe142f6d321ef2ce16ff22070e410272ee140e7eec51540a823dcd315a size: 1369