diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2022-04-26 18:08:15 +0100 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2022-04-26 18:08:15 +0100 |
commit | 1330ff9c1a8891913b5ef58cdfe64f8fd3751c75 (patch) | |
tree | e0d2639e5cc268bfa91dbe8b7da1d41ae227c19b /Dockerfile | |
parent | 12ac9bd354c664978523547ffac9bbebf0fcb577 (diff) | |
download | Smarker-1330ff9c1a8891913b5ef58cdfe64f8fd3751c75.tar.gz Smarker-1330ff9c1a8891913b5ef58cdfe64f8fd3751c75.zip |
Changed args ready for docker, started on Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b688e0c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,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"]
\ No newline at end of file |