Browse Source

🔧 add Dockerfile

dependabot/pip/requirements/sqlalchemy-1.3.0
lamya-rey 6 years ago
parent
commit
48e5e8c661
  1. 11
      Dockerfile

11
Dockerfile

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