-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildspec.yml
27 lines (25 loc) · 937 Bytes
/
buildspec.yml
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
version: 0.2
phases:
pre_build:
commands:
- echo "${DOCKERHUB_PASSWORD}" | docker login -u "${DOCKERHUB_USERNAME}" --password-stdin
- ECR_URI=535425158818.dkr.ecr.ap-southeast-1.amazonaws.com
- REPOSITORY_URI=$ECR_URI/boinc
- COMMIT_HASH=$(echo $CODEBUILD_RESOLVED_SOURCE_VERSION | cut -c 1-7)
- IMAGE_TAG=${COMMIT_HASH:=latest}
- aws ecr get-login-password --region $AWS_DEFAULT_REGION | docker login --username AWS --password-stdin $ECR_URI
- docker pull $REPOSITORY_URI:latest || true
build:
commands:
- docker build -t $REPOSITORY_URI:latest .
- docker tag $REPOSITORY_URI:latest $REPOSITORY_URI:$IMAGE_TAG
post_build:
commands:
- docker push $REPOSITORY_URI:latest
- docker push $REPOSITORY_URI:$IMAGE_TAG
artifacts:
files:
- code-deploy-scripts/start_app.sh
- code-deploy-scripts/stop_app.sh
- appspec.yml
- docker-compose.yml