Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Persano
/
formake
like
0
Sleeping
App
Files
Files
xet
Community
Fetching metadata from the HF Docker repository...
65b6516
formake
/
Dockerfile
Persano
Update Dockerfile
78d5e08
verified
5 months ago
raw
Copy download link
history
blame
198 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
. .
RUN
pip install --no-cache-dir -r requirements.txt
ENV
FLASK_APP=app.py
ENV
FLASK_RUN_HOST=
0.0
.
0.0
EXPOSE
7860
CMD
[
"flask"
,
"run"
,
"--port=7860"
]