fix docker build args
Some checks failed
Build Docker Image / build (default) (push) Successful in 6m9s
Build Docker Image / build (full) (push) Successful in 32m50s
Build Docker Image / build (python) (push) Has been cancelled
Build Docker Image / build (full-python) (push) Has been cancelled

This commit is contained in:
2025-03-30 21:34:48 +02:00
parent 442c05477e
commit a86b6aa3ad

View File

@@ -4,17 +4,21 @@ ARG SYSTEM_PACKAGES="graphviz nodejs git-lfs make biber ncurses"
FROM harbor.pollinger.dev/dockerhub-mirror/alpine:latest AS base FROM harbor.pollinger.dev/dockerhub-mirror/alpine:latest AS base
FROM base AS default FROM base AS default
ARG SYSTEM_PACKAGES
RUN apk add --no-cache texlive texlive-luatex RUN apk add --no-cache texlive texlive-luatex
RUN luaotfload-tool --update RUN luaotfload-tool --update
RUN apk add --no-cache ${SYSTEM_PACKAGES} RUN apk add --no-cache ${SYSTEM_PACKAGES}
FROM default AS full FROM default AS full
ARG SYSTEM_PACKAGES
RUN apk add --no-cache texlive-full RUN apk add --no-cache texlive-full
RUN luaotfload-tool --update RUN luaotfload-tool --update
RUN apk add --no-cache ${SYSTEM_PACKAGES} RUN apk add --no-cache ${SYSTEM_PACKAGES}
FROM default AS python FROM default AS python
ARG PYTHON_PACKAGES
RUN apk add --no-cache ${PYTHON_PACKAGES} RUN apk add --no-cache ${PYTHON_PACKAGES}
FROM full AS full-python FROM full AS full-python
ARG PYTHON_PACKAGES
RUN apk add --no-cache ${PYTHON_PACKAGES} RUN apk add --no-cache ${PYTHON_PACKAGES}