Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Benny-Tang
/
Manus3
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Manus3
/
Dockerfile
Ken Sang Tang
Update Dockerfile
9560942
verified
10 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
189 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]