From 0f5c8b724bf09294c2b0198ba9c203214592ddd0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 8 Nov 2022 02:45:06 +0000 Subject: [PATCH] Update eclipse-temurin Docker tag --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fcaa2580..030856e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ # SOFTWARE. # Build stage! -FROM eclipse-temurin:17.0.4_8-jdk-alpine AS builder +FROM eclipse-temurin:17.0.5_8-jdk-alpine AS builder # Install common libraries we will need RUN apk update && apk add --no-cache git @@ -35,7 +35,7 @@ COPY . . RUN ./gradlew installDist --stacktrace --no-daemon # Now we're at the container stage. -FROM eclipse-temurin:17.0.4_8-jdk +FROM eclipse-temurin:17.0.5_8-jdk # Install common libraries we need RUN apt update && apt install bash tini