-
-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
179a0c3
commit 982a346
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Stage-1 | ||
# Build jar | ||
FROM gradle:8.4-jdk21-graal as builder | ||
FROM gradle:8.7.0-jdk-21-and-22-graal as builder | ||
LABEL maintainer="Johannes Lichtenberger <[email protected]>" | ||
WORKDIR /usr/app/ | ||
|
||
|
@@ -11,7 +11,7 @@ RUN gradle build --refresh-dependencies -x test | |
# Stage-2 | ||
# Copy jar and run the server | ||
|
||
FROM gradle:jdk21-alpine as server | ||
FROM gradle:jdk-21-and-22-alpine as server | ||
RUN apk update && apk add --no-cache bash && apk add --no-cache gcompat | ||
ENV VERTICLE_FILE sirix-rest-api-*-SNAPSHOT-fat.jar | ||
# Set the location of the verticles | ||
|