Files
latex-container/Dockerfile
Julian Pollinger 3843d0b651
All checks were successful
Build Docker Image / build (default) (push) Successful in 32s
Build Docker Image / build (full-python) (push) Successful in 23m18s
Build Docker Image / build (python) (push) Successful in 37s
Build Docker Image / build (full) (push) Successful in 24m50s
Update Dockerfile
2025-03-15 10:29:42 +00:00

18 lines
484 B
Docker

ARG PYTHON_PACKAGES="python3 py3-pip pandoc-cli"
FROM harbor.pollinger.dev/dockerhub-mirror/alpine:latest AS base
RUN apk add --no-cache graphviz nodejs git-lfs make
FROM base AS default
RUN apk add --no-cache texlive texlive-luatex
RUN luaotfload-tool --update
FROM default AS python
RUN apk add --no-cache ${PYTHON_PACKAGES}
FROM default AS full
RUN apk add --no-cache texlive-full
RUN luaotfload-tool --update
FROM full AS full-python
RUN apk add --no-cache ${PYTHON_PACKAGES}