Files
latex-container/Dockerfile
Julian Pollinger 67e61bf8c1
Some checks failed
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
Build Docker Image / build (default) (push) Has been cancelled
probably improve caching and build speed
2025-03-30 22:09:30 +02:00

22 lines
596 B
Docker

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