Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
sfun
/
sub
like
0
Running
App
Files
Files
Community
78baf01
sub
/
Dockerfile
sfun
Update Dockerfile
02507d2
verified
3 months ago
raw
Copy download link
history
blame
Safe
131 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
RUN
pip install --no-cache-dir pyyaml requests
COPY
. .
EXPOSE
8080
CMD
[
"python"
,
"app.py"
]