File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
FROM openjdk:12-alpine
2
2
3
- COPY ./build/libs/spring-boot-payments-0.0.15.jar .
3
+ RUN apk add curl
4
4
5
- CMD ["java" , "-jar" , "./spring-boot-payments-0.0.15.jar" ]
5
+ COPY ./build/libs/spring-boot-payments-0.0.16.jar .
6
+
7
+ CMD ["java" , "-jar" , "./spring-boot-payments-0.0.16.jar" ]
Original file line number Diff line number Diff line change 6
6
7
7
run :
8
8
./gradlew build
9
- java -jar build/libs/spring-boot-payments-0.0.15 .jar
9
+ java -jar build/libs/spring-boot-payments-0.0.16 .jar
10
10
11
11
build_docker :
12
- docker build -t hashicorpdemoapp/payments:v0.0.15 .
12
+ docker build -t hashicorpdemoapp/payments:v0.0.16 .
13
13
14
14
push_docker : build_docker
15
- docker push hashicorpdemoapp/payments:v0.0.15
15
+ docker push hashicorpdemoapp/payments:v0.0.16
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ ext['log4j2.version'] = '2.16.0'
27
27
28
28
bootJar {
29
29
archiveBaseName = ' spring-boot-payments'
30
- archiveVersion = ' 0.0.15 '
30
+ archiveVersion = ' 0.0.16 '
31
31
}
32
32
33
33
dependencies {
@@ -55,4 +55,4 @@ dependencyManagement {
55
55
imports {
56
56
mavenBom " org.springframework.cloud:spring-cloud-dependencies:${ springCloudVersion} "
57
57
}
58
- }
58
+ }
You can’t perform that action at this time.
0 commit comments