Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
yangtb24/sone
yangtb24
/
ds
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
ds
/
Dockerfile
yangtb24
Update Dockerfile
44a54d3
verified
10 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
173 Bytes
FROM
python:
3.12
-rc-slim-buster
WORKDIR
/app
COPY
requirements.txt /app/
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. /app/
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]