Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
486CHD
/
yidong
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
yidong
/
Dockerfile
486CHD
Upload Dockerfile
8a78bd2
verified
9 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
176 Bytes
FROM
python:
3.13
-slim
WORKDIR
/app
COPY
. /app/
RUN
pip install --no-cache-dir flask requests && \
chmod
777
-R /app
EXPOSE
8080
CMD
[
"python"
,
"server.py"
]