Browse Source

add Dockerfile 🐳

dependabot/pip/requirements/sqlalchemy-1.3.0
Gautier couture 6 years ago
parent
commit
3c2043a44d
  1. 12
      Dockerfile

12
Dockerfile

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