Browse Source

🐳 adding Dokerfile

pull/2/head
Morgan Lombard 6 years ago
parent
commit
c4008d2fea
  1. 9
      Dockerfile

9
Dockerfile

@ -0,0 +1,9 @@
FROM python:3.7.9
COPY . /app
ENV FLASK_APP=autoapp.py
RUN pip install -r /app/requirements/dev.txt
CMD python /app/autoapp.py
Loading…
Cancel
Save