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,4 +1,4 @@
FROM amazoncorretto:17.0.15-alpine AS tester
FROM amazoncorretto:17.0.16-alpine AS tester

WORKDIR /home/cuser

Expand All @@ -11,7 +11,7 @@ RUN ./gradlew --no-daemon check
FROM tester AS builder
RUN ./gradlew --no-daemon shadowJar

FROM amazoncorretto:17.0.15-alpine AS distribution
FROM amazoncorretto:17.0.16-alpine AS distribution
COPY --from=builder /home/cuser/build/libs/schema-registry-gitops.jar /home/cuser/schema-registry-gitops.jar

WORKDIR /home/cuser
Expand Down
Loading