summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: b688e0cf2f2b479a9a2c7fe9967de31536c41524 (plain)
1
2
3
4
5
6
7
8
9
10
11
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-base wkhtmltopdf
COPY ./Smarker /Smarker
WORKDIR /Smarker
RUN pip3 install -r requirements.txt
ENTRYPOINT ["python3"]
CMD ["smarker.py"]