Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
andreasmartin
/
ChEdBot
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6bf1fbd
ChEdBot
/
Dockerfile
root
Add Dockerfile
6bf1fbd
over 1 year ago
raw
Copy download link
history
blame
Safe
221 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
./requirements.txt /app/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /app/requirements.txt
COPY
. .
CMD
[
"chainlit"
,
"run"
,
"app.py"
,
"--port"
,
"7860"
,
"--no-cache"
]