Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mynuddin
/
chatbot-space
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c209aa4
chatbot-space
/
Dockerfile
mynuddin
Create Dockerfile
3580467
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
173 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
app.py .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]