From b450bb488a230a286560d59b85ae2c594d481077 Mon Sep 17 00:00:00 2001 From: Colin Dean Date: Sat, 2 May 2026 14:32:21 -0400 Subject: [PATCH] Update EASY_VERSION in Dockerfile This isn't very consequential since the usage here pulls directly from the repo and the only change since is to an install script, but it's good to keep up, eh? --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3902461..3bf163b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -136,7 +136,7 @@ RUN ln -s ${PANDOC_DATA_DIR} /home/ubuntu/.pandoc # Easy templates ARG EASY_REPO=https://raw.githubusercontent.com/ryangrose/easy-pandoc-templates/ -ARG EASY_VERSION=9a884190fe19782f4434851053947173f8cec3d2 +ARG EASY_VERSION=80d5aa611ceaee12cd55ac344a1e19cfb7781d14 RUN wget ${EASY_REPO}/${EASY_VERSION}/html/uikit.html -O ${PANDOC_TEMPLATES_DIR}/uikit.html && \ wget ${EASY_REPO}/${EASY_VERSION}/html/bootstrap_menu.html -O ${PANDOC_TEMPLATES_DIR}/bootstrap_menu.html && \