zips/Dockerfile

27 lines
500 B
Docker
Raw Normal View History

2020-01-02 11:58:44 -08:00
FROM debian:latest
RUN apt-get update
RUN apt-get install -y \
gawk \
perl \
sed \
git \
2020-01-02 11:58:44 -08:00
python3 \
python3-pip \
pandoc \
biber \
latexmk \
texlive \
texlive-science \
texlive-fonts-extra \
texlive-plain-generic \
texlive-bibtex-extra
2020-01-02 11:58:44 -08:00
RUN rm /usr/lib/python3.11/EXTERNALLY-MANAGED
RUN pip install rst2html5
ENV PATH=${PATH}:/root/.local/bin
2020-01-02 11:58:44 -08:00
WORKDIR "/zips"
ENTRYPOINT ["make", "all"]