From ec536e519d23f885ce9043961e7b735fdca8c708 Mon Sep 17 00:00:00 2001 From: Eric Vantillard Date: Thu, 23 Mar 2023 13:45:13 +0100 Subject: [PATCH] fix(jekyll): update PlantUML version to 1.2023.4 --- jekyll/Dockerfile | 7 +++++-- jekyll/README.md | 5 +++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/jekyll/Dockerfile b/jekyll/Dockerfile index 49270d9..c276e01 100644 --- a/jekyll/Dockerfile +++ b/jekyll/Dockerfile @@ -11,10 +11,13 @@ RUN apk add --update --no-cache \ graphviz \ ttf-freefont +ARG PLANTUML_VERSION=1.2023.4 +ARG PLANTUML_TAG=v1.2023.4 + RUN chmod a+x /usr/local/bin/plantuml && \ - wget https://github.com/plantuml/plantuml/releases/download/snapshot/plantuml-SNAPSHOT.jar && \ + wget https://github.com/plantuml/plantuml/releases/download/${PLANTUML_TAG}/plantuml-pdf-${PLANTUML_VERSION}.jar && \ mkdir -p /usr/local/share/plantuml && \ - mv plantuml-SNAPSHOT.jar /usr/local/share/plantuml/plantuml.jar && \ + mv plantuml-pdf-${PLANTUML_VERSION}.jar /usr/local/share/plantuml/plantuml.jar && \ gem install jekyll-plantuml CMD ["jekyll", "--help"] diff --git a/jekyll/README.md b/jekyll/README.md index caf8e3b..a7ff032 100644 --- a/jekyll/README.md +++ b/jekyll/README.md @@ -26,7 +26,8 @@ Container base on [jekyll/jekyll](https://hub.docker.com/r/jekyll/jekyll/) container. - JEKYLL_VERSION: 4.2.2 -- PlantUML_VERSION: snapshot (20 mars 2023) +- PLANTUML_VERSION: 1.2023.4 +- PLANTUML_TAG: v1.2023.4 ## Usage @@ -37,7 +38,7 @@ Container base on [jekyll/jekyll](https://hub.docker.com/r/jekyll/jekyll/) conta version: "3.8" services: jekyll: - image: plantuml/jekyll:latest + image: ghcr.io/plantuml/docker/jekyll:latest container_name: jekyll environment: JEKYLL_SITE_NAME: myPlantUmlBlog