File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 11FROM eclipse-temurin:17
22
3- RUN mkdir /indigo-iam
3+ RUN apt-get update && apt-get upgrade -y && \
4+ mkdir /indigo-iam
5+
46WORKDIR /indigo-iam
57CMD java ${IAM_JAVA_OPTS} -jar ${IAM_JAR}
68
7- # Embed TINI since compose v3 syntax do not support the init
9+ # Embed TINI since compose v3 syntax do not support the init
810# option to run docker --init
911#
1012ENV TINI_VERSION v0.19.0
Original file line number Diff line number Diff line change 11FROM eclipse-temurin:17 as builder
22
3- RUN mkdir /indigo-iam
3+ RUN apt-get update && apt-get upgrade -y && \
4+ mkdir /indigo-iam
45WORKDIR /indigo-iam
56COPY iam-login-service.war /indigo-iam/
67RUN java -Djarmode=layertools -jar iam-login-service.war extract
@@ -13,9 +14,9 @@ COPY --from=builder indigo-iam/spring-boot-loader/ ./
1314COPY --from=builder indigo-iam/snapshot-dependencies/ ./
1415COPY --from=builder indigo-iam/application/ ./
1516
16- RUN apt-get update
17- RUN apt-get install -y zip
18- RUN zip -d WEB-INF/lib/angular-ui-bootstrap-2.5.6.jar META-INF/resources/webjars/angular-ui-bootstrap/2.5.6/dist/.DS_Store
19- RUN rm -f WEB-INF/classes/keystore.jwks
17+ RUN apt-get update && apt-get upgrade -y && \
18+ apt-get install -y zip && \
19+ zip -d WEB-INF/lib/angular-ui-bootstrap-2.5.6.jar META-INF/resources/webjars/angular-ui-bootstrap/2.5.6/dist/.DS_Store && \
20+ rm -f WEB-INF/classes/keystore.jwks
2021
2122CMD java ${IAM_JAVA_OPTS} org.springframework.boot.loader.WarLauncher
You can’t perform that action at this time.
0 commit comments