add pandoc to python package
Some checks failed
Build Docker Image / build (default) (push) Successful in 37s
Build Docker Image / build (full) (push) Has been cancelled
Build Docker Image / build (full-python) (push) Has been cancelled
Build Docker Image / build (python) (push) Has been cancelled

This commit is contained in:
2025-03-15 01:03:22 +01:00
parent d4e19e204a
commit 466e4f8795

View File

@@ -1,3 +1,5 @@
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
@@ -6,11 +8,11 @@ RUN apk add --update texlive texlive-luatex
RUN luaotfload-tool --update
FROM default AS python
RUN apk add --update python3 py3-pip
RUN apk add --update ${PYTHON_PACKAGES}
FROM default AS full
RUN apk add --update texlive-full
RUN luaotfload-tool --update
FROM full AS full-python
RUN apk add --update python3 py3-pip
RUN apk add --update ${PYTHON_PACKAGES}