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 src/dice-java/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# --- Build Stage ---
FROM sapmachine:25-jdk-headless-ubuntu AS build
FROM sapmachine:26-jdk-headless-ubuntu AS build
# install maven
RUN apt-get update && apt-get -y install maven
# build the application
Expand All @@ -11,7 +11,7 @@ COPY src ./src
RUN mvn package -DskipTests

# --- Run Stage ---
FROM sapmachine:25-jre-alpine
FROM sapmachine:26-jre-alpine

ARG REST_PORT=8082
ENV REST_PORT=${REST_PORT}
Expand Down
Loading