Files
latex-container/Dockerfile
Julian Pollinger 2b03fe7b80
Some checks failed
Build Docker Image / build (full-python) (push) Has been cancelled
Build Docker Image / build (python) (push) Has been cancelled
Build Docker Image / build (full) (push) Has been cancelled
Build Docker Image / build (default) (push) Has been cancelled
update base image
2025-03-15 00:34:46 +01:00

13 lines
365 B
Docker

FROM harbor.pollinger.dev/dockerhub-mirror/alpine:latest AS default
RUN apk add --update texlive texlive-luatex
RUN apk add --update graphviz nodejs git-lfs
RUN luaotfload-tool --update
FROM default AS python
RUN apk add --update python3 py3-pip
FROM default AS full
RUN apk add --update texlive-full
FROM full AS full-python
RUN apk add --update python3 py3-pip