Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sixfingerdev
/
sfarena
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
eb78d00
sfarena
/
Dockerfile
sixfingerdev
Create Dockerfile
eb78d00
verified
4 months ago
raw
Copy download link
history
blame
156 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
CMD
[
"gunicorn"
,
"-b"
,
"0.0.0.0:7860"
,
"app:app"
]