Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM eclipse-temurin:22-jdk-noble AS build
FROM eclipse-temurin:25.0.1_8-jdk-noble AS build
ENV JAVA_TOOL_OPTIONS="--enable-preview"
WORKDIR /app
COPY . .
RUN --mount=type=cache,target=/root/.gradle ./gradlew bootJar --no-daemon

FROM eclipse-temurin:22-jre-noble AS runtime
FROM eclipse-temurin:25.0.1_8-jre-noble AS runtime
WORKDIR /app
VOLUME /app/config
COPY --from=build /app/build/libs/AsyncLevelling-*.jar app.jar
Expand Down