Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
huchiahsi/sculinebot2025
wsy07
/
sculinebot2025
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b859a54
sculinebot2025
/
Dockerfile
3v324v23
test
b859a54
7 months ago
raw
Copy download link
history
blame
226 Bytes
FROM
python:
3.12
.
2
WORKDIR
/code
COPY
./test_requirements.txt /code/test_requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/test_requirements.txt
COPY
. .
CMD
[
"gunicorn"
,
"-b"
,
"0.0.0.0:7860"
,
"test:app"
]