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...
0913f15
tg-bot
/
Dockerfile
yangtb24
Update Dockerfile
0913f15
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
192 Bytes
FROM python:3.11-slim
sudo apt
update
sudo apt install curl
WORKDIR /
app
COPY
requirements.txt .
RUN
pip install --
no
-cache-
dir
-r requirements.txt
COPY
app
.py .
CMD [
"python"
,
"app.py"
]