File tree 3 files changed +5
-2
lines changed
3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -2,4 +2,6 @@ FROM eclipse-temurin:17
2
2
MAINTAINER garambo.it
3
3
ARG JAR_FILE=build/libs/*.jar
4
4
COPY ${JAR_FILE} retrosearch.jar
5
- ENTRYPOINT ["java" ,"-jar" ,"/retrosearch.jar" ]
5
+ ENTRYPOINT ["java" ,"-jar" ,"/retrosearch.jar" ]
6
+ HEALTHCHECK --interval=30s --timeout=1s \
7
+ CMD curl -f http://localhost:3000/actuator/health || exit 1
Original file line number Diff line number Diff line change 1
- 0.5.1 -testing
1
+ 0.5.2 -testing
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ springBoot {
36
36
dependencies {
37
37
implementation ' org.springframework.boot:spring-boot-starter-thymeleaf'
38
38
implementation ' org.springframework.boot:spring-boot-starter-web'
39
+ implementation ' org.springframework.boot:spring-boot-starter-actuator'
39
40
implementation ' org.jsoup:jsoup:1.16.2'
40
41
implementation ' commons-validator:commons-validator:1.7'
41
42
implementation ' org.apache.httpcomponents:httpclient:4.5.14'
You can’t perform that action at this time.
0 commit comments