Files
latex-container/Dockerfile
Julian Pollinger 29f8df1f86
Some checks failed
Build Docker Image / build (default) (push) Failing after 3m11s
Build Docker Image / build (full-python) (push) Failing after 5s
Build Docker Image / build (python) (push) Failing after 1s
Build Docker Image / build (full) (push) Failing after 3m48s
add make to containers
2025-03-15 01:05:14 +01:00

18 lines
474 B
Docker

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
FROM base AS default
RUN apk add --update texlive texlive-luatex
RUN luaotfload-tool --update
FROM default AS python
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 ${PYTHON_PACKAGES}