Skip to content

Commit

Permalink
fix(deployment): Added missing buildspec for CodeBuild
Browse files Browse the repository at this point in the history
  • Loading branch information
b32147 committed Aug 5, 2021
1 parent 770ecdb commit 273fae0
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions buildspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: 0.2

env:
parameter-store:
DOCKER_HUB_USERNAME: "/dbmi/codebuild/docker/username"
DOCKER_HUB_PASSWORD: "/dbmi/codebuild/docker/password"
phases:
pre_build:
commands:
- echo Logging in to Amazon ECR...
- $(aws ecr get-login --no-include-email --region $AWS_DEFAULT_REGION)
- echo Logging in to Docker Hub...
- docker login -u ${DOCKER_HUB_USERNAME} -p ${DOCKER_HUB_PASSWORD}
build:
commands:
- docker build -t $IMAGE_REPO_NAME:$IMAGE_TAG .
- docker tag $IMAGE_REPO_NAME:$IMAGE_TAG $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com/$IMAGE_REPO_NAME:$IMAGE_TAG
post_build:
commands:
- echo Build completed on `date`
- echo Pushing the Docker image...
- docker push $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com/$IMAGE_REPO_NAME:$IMAGE_TAG

0 comments on commit 273fae0

Please # to comment.