mirror of
https://github.com/diangogav/EDOpro-server-ts
synced 2026-08-24 00:23:05 -04:00
29 lines
No EOL
1.2 KiB
YAML
29 lines
No EOL
1.2 KiB
YAML
version: 0.2
|
|
|
|
phases:
|
|
pre_build:
|
|
commands:
|
|
- echo Logging in to Amazon ECR...
|
|
- aws --version
|
|
- aws ecr get-login-password --region $AWS_DEFAULT_REGION | docker login --username AWS --password-stdin $AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com
|
|
- REPOSITORY_URI=$AWS_ACCOUNT_ID.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com/$IMAGE_REPO_NAME
|
|
- COMMIT_HASH=$(echo $CODEBUILD_RESOLVED_SOURCE_VERSION | cut -c 1-7)
|
|
- IMAGE_TAG=${COMMIT_HASH:=latest}
|
|
- echo Downloading certificates from S3...
|
|
- aws s3 cp s3://$S3_BUCKET_NAME/certs/ ./certs/ --recursive
|
|
build:
|
|
commands:
|
|
- echo Build started on `date`
|
|
- echo Building the Docker image...
|
|
- docker build -t $REPOSITORY_URI:latest .
|
|
- docker tag $REPOSITORY_URI:latest $REPOSITORY_URI:$IMAGE_TAG
|
|
post_build:
|
|
commands:
|
|
- echo Build completed on `date`
|
|
- echo Pushing the Docker images...
|
|
- docker push $REPOSITORY_URI:latest
|
|
- docker push $REPOSITORY_URI:$IMAGE_TAG
|
|
- echo Writing image definitions file...
|
|
- printf "[{\"name\":\"$CONTAINER_NAME\",\"imageUri\":\"%s\"}]" $REPOSITORY_URI:$IMAGE_TAG > imagedefinitions.json
|
|
artifacts:
|
|
files: imagedefinitions.json |