Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Frajosgro
/
DrBot
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
478b527
DrBot
/
dockerfile
Frajosgro
Update dockerfile
478b527
verified
2 months ago
raw
Copy download link
history
blame
Safe
139 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
. .
RUN
pip install -r requirements.txt
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]