Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SSS18
/
predictive
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
4a8a71b
predictive
/
Dockerfile
SSS18
Update Dockerfile
631a0ac
verified
2 months ago
raw
Copy download link
history
blame
Safe
190 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"gunicorn"
,
"--bind"
,
"0.0.0.0:7860"
,
"app:app"
]