blob: 378c4d31a8fc66ca0ccb89910985c5ad088e17f1 (
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 python3-dev build-essential clang libffi-dev
COPY . /app
WORKDIR /app
RUN pip3 install -r requirements.txt
ENTRYPOINT ["python3"]
CMD ["app.py", "--production"]
|