forked from simplilearn10/aws-devops-springbootapp
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathbuildspec.yml
More file actions
42 lines (40 loc) · 1.58 KB
/
buildspec.yml
File metadata and controls
42 lines (40 loc) · 1.58 KB
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
41
42
version: 0.2
phases:
pre_build:
commands:
- echo Logging in to Amazon ECR....
# Check AWS CLI version
- aws --version
# Log in to Amazon ECR
- aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin 946229218607.dkr.ecr.us-east-1.amazonaws.com
# Define repository URI and image tag
- REPOSITORY_URI=946229218607.dkr.ecr.us-east-1.amazonaws.com/course-end-project
- IMAGE_TAG=build-$(echo $CODEBUILD_BUILD_ID | awk -F":" '{print $2}')
build:
commands:
- echo Build started on date
- echo Building the JAR file...
# Build the Java project using Maven
- mvn clean install
- echo Building the Docker image...
# Build and tag 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 image to ECR...
# Push Docker images to ECR
- docker push $REPOSITORY_URI:latest
- docker push $REPOSITORY_URI:$IMAGE_TAG
- echo Writing image definitions file...
# Define container name and create imagedefinitions.json for ECS
- DOCKER_CONTAINER_NAME=springboot
- printf '[{"name":"%s","imageUri":"%s"}]' $DOCKER_CONTAINER_NAME $REPOSITORY_URI:$IMAGE_TAG > imagedefinitions.json
- echo $DOCKER_CONTAINER_NAME
- echo Displaying imagedefinitions.json content
- cat imagedefinitions.json
artifacts:
files:
- imagedefinitions.json
- target/springboot-aws-deploy.jar