You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM eclipse-temurin:19-jdk-jammy
|
|
|
|
WORKDIR /app
|
|
|
|
COPY .mvn/ .mvn
|
|
COPY mvnw pom.xml ./
|
|
RUN ./mvnw dependency:resolve
|
|
|
|
COPY src ./src
|
|
|
|
CMD ["./mvnw", "spring-boot:run"] |