Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
pg-13
/
GettingLost-Flask
like
0
Runtime error
App
Files
Files
Community
705ce67
GettingLost-Flask
/
Dockerfile
pg-13
Update Dockerfile
8af80a1
verified
5 months ago
raw
Copy download link
history
blame
Safe
120 Bytes
FROM
python:
3.8
COPY
. /app
WORKDIR
/app
RUN
pip install -r requirements.txt
EXPOSE
5000
CMD
[
"python3"
,
"app.py"
]