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 file-storage-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Multi-stage build for file-storage-server
FROM eclipse-temurin:21-jdk-alpine AS builder
FROM eclipse-temurin:25-jdk-alpine AS builder

WORKDIR /workspace

Expand All @@ -19,7 +19,7 @@ COPY file-storage-client file-storage-client
RUN ./gradlew :file-storage-server:build -x test -x checkstyleMain -x checkstyleTest -x pmdMain -x pmdTest -x spotbugsMain -x spotbugsTest

# Runtime stage
FROM eclipse-temurin:21-jre-alpine
FROM eclipse-temurin:25-jre-alpine

WORKDIR /app

Expand Down
Loading