All checks were successful
Create and publish container / build_container (push) Successful in 5s
11 lines
353 B
Docker
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" ]
|