Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Bump eclipse-temurin from 17.0.6_10-jdk to 17.0.8_7-jdk in /server #178

Open
wants to merge 1 commit into
base: main
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 server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use a jdk image to build the application jar file
FROM eclipse-temurin:17.0.6_10-jdk AS builder
FROM eclipse-temurin:17.0.8_7-jdk AS builder

WORKDIR /app

Expand All @@ -26,7 +26,7 @@ RUN ./gradlew assemble

# Use a jre image as the source from which to copy a java runtime
# into the final docker stage
FROM eclipse-temurin:17.0.6_10-jre AS jre
FROM eclipse-temurin:17.0.8_7-jre AS jre

# Use a distroless image as the base image for deployed environments.
# Copy the application jar file and other needed dependencies from earlier
Expand Down