File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
modules/jooby-cli/src/main/resources/cli Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- FROM gradle:5.6.0-jdk8 as build
1+ FROM gradle:8-jdk17 as build
22WORKDIR /{{ artifactId }}
33COPY build.gradle build.gradle
44COPY settings.gradle settings.gradle
55COPY src src
66COPY conf conf
77RUN gradle shadowJar
88
9- FROM openjdk:8 -jdk-slim
9+ FROM eclipse-temurin:17 -jdk
1010WORKDIR /{{ artifactId }}
1111COPY --from=build /{{ artifactId }} /{{ finalArtifactId }} app.jar
1212COPY conf conf
Original file line number Diff line number Diff line change 1- FROM maven:3.6.1-jdk-8-slim as build
1+ FROM maven:3-eclipse-temurin-17 as build
22WORKDIR /{{ artifactId }}
33COPY pom.xml pom.xml
44COPY src src
55COPY conf conf
66RUN mvn package
77
8- FROM openjdk:8 -jdk-slim
8+ FROM eclipse-temurin:17 -jdk
99WORKDIR /{{ artifactId }}
1010{{ #if stork }}
1111COPY --from=build /{{ artifactId }} /target/stork .
You can’t perform that action at this time.
0 commit comments