File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,6 +31,11 @@ RUN java -Djarmode=layertools -jar app.jar extract
3131# because we have some UNSAFE operations on Java internal classes
3232FROM eclipse-temurin:25.0.2_10-jre-noble
3333
34+ # Install curl for health check
35+ # Notes: Some base images have installed curl,
36+ # run "docker run -it --rm <image> curl --version" to check if curl is installed.
37+ RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
38+
3439ENV TURMS_GATEWAY_HOME=/opt/turms/turms-gateway
3540WORKDIR ${TURMS_GATEWAY_HOME}
3641
Original file line number Diff line number Diff line change @@ -31,6 +31,11 @@ RUN java -Djarmode=layertools -jar app.jar extract
3131# because we have some UNSAFE operations on Java internal classes
3232FROM eclipse-temurin:25.0.2_10-jre-noble
3333
34+ # Install curl for health check
35+ # Notes: Some base images have installed curl,
36+ # run "docker run -it --rm <image> curl --version" to check if curl is installed.
37+ RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
38+
3439ENV TURMS_SERVICE_HOME=/opt/turms/turms-service
3540WORKDIR ${TURMS_SERVICE_HOME}
3641
You can’t perform that action at this time.
0 commit comments