13 lines
365 B
Docker
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 |