Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Update amazoncorretto Docker tag to v17.0.9 #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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,11 +1,11 @@
FROM amazoncorretto:17 AS build
FROM amazoncorretto:17.0.9 AS build

WORKDIR /work
COPY . /work

RUN chmod +x gradlew && ./gradlew --no-daemon installDist

FROM amazoncorretto:17
FROM amazoncorretto:17.0.9

COPY --from=build /work/build/install/market/ /app/market/

Expand Down