Browse Source

🔧 Add Dockerfile.

main
Pierre Fontaine 5 years ago
parent
commit
d5a12e974e
  1. 13
      Dockerfile

13
Dockerfile

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