We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98d78f2 commit 9e07dd5Copy full SHA for 9e07dd5
backend-java/Dockerfile
@@ -1,14 +1,14 @@
1
2
3
# "Provides the native-image executable. Used by the Maven and Gradle plugin from Quarkus to build linux64 executables"
4
-FROM maven:3.9-eclipse-temurin
+FROM maven:3.9-eclipse-temurin AS build
5
WORKDIR /app
6
# Image defaults to /project; copy controlled by .dockerignore
7
COPY --chown=quarkus:quarkus . ./
8
RUN ./mvnw package -DskipTests
9
10
11
-FROM registry.access.redhat.com/ubi9/openjdk-21:1.21
+FROM registry.access.redhat.com/ubi9/openjdk-21:1.21 as deploy
12
13
ENV LANGUAGE='en_US:en'
14
0 commit comments