Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
xenon4646
/
ch-bot
like
0
Model card
Files
Files and versions
xet
Community
main
ch-bot
/
Dockerfile
xenon4646
Upload 4 files
d3499fa
verified
22 days ago
raw
Copy download link
history
blame
contribute
delete
161 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
app.py .
CMD
[
"python"
,
"app.py"
]