We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f5c0a9 commit 3afd233Copy full SHA for 3afd233
Dockerfile
@@ -1,6 +1,6 @@
1
###
2
# Image pour la compilation
3
-FROM maven:3-jdk-11 as build-image
+FROM maven:3-eclipse-temurin-11 as build-image
4
WORKDIR /build/
5
# Installation et configuration de la locale FR
6
RUN apt update && DEBIAN_FRONTEND=noninteractive apt -y install locales
@@ -33,7 +33,7 @@ RUN mvn --batch-mode \
33
#FROM tomcat:9-jdk11 as api-image
34
#COPY --from=build-image /build/web/target/*.war /usr/local/tomcat/webapps/ROOT.war
35
#CMD [ "catalina.sh", "run" ]
36
-FROM openjdk:11 as api-image
+FROM eclipse-temurin:11-jdk as api-image
37
WORKDIR /app/
38
COPY --from=build-image /build/web/target/*.jar /app/qualimarc.jar
39
ENTRYPOINT ["java","-jar","/app/qualimarc.jar"]
0 commit comments