Last active
July 10, 2018 09:21
-
-
Save siakon89/de06a002ac2e5d690808ef82882553ae to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(aws ecr get-login --region $region --no-include-email) | |
# Copy Dockerfiles | |
!cp Dockerfile.* build/ | |
# Copy training script and config file | |
!cp cifar_10_keras.py build/ | |
!cp keras.json build/ | |
# Building the image | |
!cd build | |
!docker build -t $image_tag -f $dockerfile . | |
!cd .. | |
# Assign a tag to the Docker image | |
!docker tag $image_tag $account.dkr.ecr.$region.amazonaws.com/$repo_name:latest | |
# Push docker image to ECR | |
!docker push $account.dkr.ecr.$region.amazonaws.com/$repo_name:latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment