Skip to content
Closed
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,5 +1,5 @@
# syntax = docker/dockerfile:1.3
FROM openjdk:11-jdk-slim-bullseye as base
FROM openjdk:11.0.16-jdk-slim-bullseye as base

WORKDIR /app

Expand All @@ -23,7 +23,7 @@ RUN --mount=type=cache,target=/root/.gradle/caches \

RUN jar xf build/libs/*.jar BOOT-INF META-INF

FROM openjdk:11-jre-slim-bullseye
FROM openjdk:11.0.16-jre-slim-bullseye

COPY --from=build /app/BOOT-INF/lib ./lib
COPY --from=build /app/META-INF ./META-INF
Expand Down