GettingLost-Flask / Dockerfile
pg-13's picture
Update Dockerfile
6022947 verified
raw
history blame contribute delete
No virus
181 Bytes
FROM python:3.8
WORKDIR /workspace
ADD . /workspace
RUN pip install -r requirements.txt
CMD [ "python" , "/workspace/app.py" , " β€” host", "127.0.0.1", " β€” port", "5000" ]