Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
xenon4646
/
ch-bot
like
0
Model card
Files
Files and versions
xet
Community
Copy to bucket
new
main
ch-bot
/
Dockerfile
xenon4646
Upload 4 files
d3499fa
verified
3 months 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"
]