Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yangtb24
/
tg-bot
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
tg-bot
/
Dockerfile
yangtb24
Update Dockerfile
0bb7247
verified
27 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
153 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"
]