-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_and_push.sh
executable file
·41 lines (30 loc) · 1.47 KB
/
build_and_push.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/bash
# The name of our algorithm
algorithm_name=pytorch-maskrcnn-tl
# get information - account and region, required by ECR https://aws.amazon.com/ecr/
account=$(aws sts get-caller-identity --query Account --output text)
echo $account
# Get the region defined in the current configuration (default to us-west-2 if none defined)
region=$(aws configure get region)
region=${region:-us-west-2}
echo $region
# derive fullname of docker image
fullname="${account}.dkr.ecr.${region}.amazonaws.com/${algorithm_name}:latest"
# If the repository doesn't exist in ECR, create it.
aws ecr describe-repositories --repository-names "${algorithm_name}" > /dev/null 2>&1
if [ $? -ne 0 ]
then
aws ecr create-repository --repository-name "${algorithm_name}" > /dev/null
fi
# Get the login command from ECR and execute it directly
$(aws ecr get-login --region ${region} --no-include-email)
# Get the login command from ECR in order to pull down the SageMaker TensorFlow image
$(aws ecr get-login --registry-ids 763104351884 --region ${region} --no-include-email)
# get the fullname of deep learning container image
base_img='763104351884.dkr.ecr.'$region'.amazonaws.com/pytorch-training:1.7.1-gpu-py36-cu110-ubuntu18.04'
echo 'base_img:'$base_img
# Build the docker image locally with the image name and then push it to ECR
# with the full name.
docker build -t ${algorithm_name} -f Dockerfile --build-arg BASE_IMG="${base_img}" .
docker tag ${algorithm_name} ${fullname}
docker push ${fullname}