From f6df99e1988759b07317a9da207f3e1d1ffc9330 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Wed, 28 Sep 2022 15:01:54 +0200 Subject: [PATCH] Use openjdk17 instead of 11 Signed-off-by: Eric Peterson --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1bfeb22..7a357cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,8 +14,7 @@ FROM python:3.8-alpine - -RUN apk update && apk --no-cache add gcc musl-dev openjdk11-jdk curl graphviz ttf-dejavu fontconfig +RUN apk update && apk --no-cache add gcc musl-dev openjdk17-jdk curl graphviz ttf-dejavu fontconfig # Download plantuml file, Validate checksum & Move plantuml file RUN curl -o plantuml.jar -L http://sourceforge.net/projects/plantuml/files/plantuml.1.2022.4.jar/download && echo "246d1ed561ebbcac14b2798b45712a9d018024c0 plantuml.jar" | sha1sum -c - && mv plantuml.jar /opt/plantuml.jar