Files
docker/Dockerfile
Janis Hutz 15c34ae2c0
All checks were successful
Create and publish container / build_container (push) Successful in 5s
Set up
2025-12-22 17:54:23 +01:00

11 lines
353 B
Docker

FROM alpine
WORKDIR /root
RUN apk add texlive texlive-bibtexextra texlive-context texlive-dvi texlive-fontutils texmf-dist-langgerman texlive-latexextra texlive-latexrecommended texlive-mathscience texlive-pictures texlive-plaingeneric texlive-pstricks
COPY entrypoint.sh /root/
RUN chmod +x /root/entrypoint.sh
ENTRYPOINT [ "/root/entrypoint.sh" ]