blob: d6188ee9807b68a4abccc986b23dc17a1a5109dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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
RUN ln -s /usr/bin/python3 /usr/bin/python
ENTRYPOINT ["python"]
CMD ["smarker.py"]
|