zips/Dockerfile

24 lines
429 B
Docker
Raw Normal View History

2020-01-02 11:58:44 -08:00
FROM debian:latest
RUN apt-get update \
&& 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 pip3 install rst2html5
2020-01-02 11:58:44 -08:00
WORKDIR "/zips"
ENTRYPOINT ["make", "all"]