Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Oralyz
/
chatbot
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
chatbot
/
Dockerfile
Oralyz
Create Dockerfile
5765fcb
verified
14 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
169 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]