Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
elikoy
/
mcpee
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a09debb
mcpee
/
Dockerfile
elikoy
Update Dockerfile
c99142a
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
176 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"gunicorn"
,
"--bind"
,
"0.0.0.0:7860"
,
"app:app"
]