From 001b726242945901393f5e58917100900ba2d128 Mon Sep 17 00:00:00 2001 From: Julian Pollinger Date: Sat, 15 Mar 2025 00:22:31 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 52fb01a..068c07c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,18 +1,18 @@ ARG PYTHON_PACKAGES="python3 py3-pip pandoc-cli" FROM harbor.pollinger.dev/dockerhub-mirror/alpine:latest AS base -RUN apk add --update graphviz nodejs git-lfs make +RUN apk add --no-cache graphviz nodejs git-lfs make FROM base AS default -RUN apk add --update texlive texlive-luatex -RUN luaotfload-tool --update +RUN apk add --no-cache texlive texlive-luatex +RUN luaotfload-tool --no-cache FROM default AS python -RUN apk add --update ${PYTHON_PACKAGES} +RUN apk add --no-cache ${PYTHON_PACKAGES} FROM default AS full -RUN apk add --update texlive-full -RUN luaotfload-tool --update +RUN apk add --no-cache texlive-full +RUN luaotfload-tool --no-cache FROM full AS full-python -RUN apk add --update ${PYTHON_PACKAGES} \ No newline at end of file +RUN apk add --no-cache ${PYTHON_PACKAGES} \ No newline at end of file