Files
docker/latex/Dockerfile
Janis Hutz becdf00ad9
All checks were successful
Create and publish container / build_container (push) Successful in 7s
Restructure repo
2025-12-22 19:19:43 +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" ]