pelican-docker/Dockerfile

8 lines
222 B
Docker
Raw Normal View History

2020-05-03 17:29:49 +00:00
FROM python:3.8.2-buster
2020-02-12 21:41:07 +00:00
RUN apt update && apt upgrade -y
2020-05-03 17:29:49 +00:00
RUN apt install texlive-latex-base
2020-02-12 21:41:07 +00:00
RUN pip install pelican==4.2.0
WORKDIR /site
RUN mkdir -p /site-generated
2020-05-03 17:29:49 +00:00
ENTRYPOINT ["pelican", "-Dr", "-o", "/site-generated"]