Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dragxd
/
host-tg
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
host-tg
/
Dockerfile
dragxd
Create Dockerfile
89de4ed
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
151 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
bot.py .
CMD
[
"python"
,
"bot.py"
]