Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pg-13
/
GettingLost-Flask
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
080ce5b
GettingLost-Flask
/
Dockerfile
pg-13
Create Dockerfile
080ce5b
verified
almost 2 years ago
raw
Copy download link
history
blame
121 Bytes
FROM
python:
3.10
COPY
. /app
WORKDIR
/app
RUN
pip install -r requirements.txt
EXPOSE
5000
CMD
[
"python3"
,
"app.py"
]