aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: e9d0fa45d6fc54db8362a2a56f3a3a2d4d3fc3ed (plain)
1
2
3
4
5
6
7
8
9
FROM ubuntu:latest
MAINTAINER Eden Attenborough "eda@e.email"
RUN apt-get update -y
RUN apt-get install -y python3-pip python-dev build-essential
COPY . /app
WORKDIR /app
RUN pip3 install -r requirements.txt
ENTRYPOINT ["python3"]
CMD ["app.py", "--production"]