GettingLost-Flask / Dockerfile
pg-13's picture
Update Dockerfile
8af80a1 verified
raw
history blame
No virus
120 Bytes
FROM python:3.8
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 5000
CMD ["python3", "app.py"]