Docker file filled out

This commit is contained in:
2019-07-04 16:34:57 +01:00
parent 96de16586d
commit 3b1ff8dbb8

View File

@@ -0,0 +1,9 @@
FROM ubuntu:latest
MAINTAINER Sean Cusack "seancusack@gmail.com"
RUN apt-get update -y
RUN apt-get install -y python3-pip python3-dev build-essential
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
ENTRYPOINT ["python3"]
CMD ["app.py"]