Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Zhofang
/
Pro
like
0
Runtime error
App
Files
Files
Community
main
Pro
/
Dockerfile
Zhofang
Update Dockerfile
c6fad95
verified
13 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
141 Bytes
FROM
python:
3.9
WORKDIR
/code
RUN
pip install flask requests
RUN
pip install numpy==1.26.4
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]