summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 8f6984926235ddae8d2d270c097836a7023db37c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM ubuntu:latest
MAINTAINER Eden Attenborough "gae19jtu@uea.ac.uk"
ENV TZ=Europe/London
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get update -y
RUN apt-get install -y python3-pip python3-dev build-essential texlive-latex-base texlive-pictures texlive-science texlive-latex-extra wkhtmltopdf
RUN mkdir /out
COPY ./Smarker /Smarker
WORKDIR /Smarker
RUN pip3 install -r requirements.txt
RUN ln -s /usr/bin/python3 /usr/bin/python
ENTRYPOINT ["python"]
CMD ["smarker.py"]