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
Datasets:
i-Lang
/
TelegramGuard
like
0
Follow
I-Lang Protocol
5
Modalities:
Text
Formats:
text
Size:
< 1K
Tags:
telegram
anti-spam
ilang
chatbot
Libraries:
Datasets
Croissant
License:
mit
Dataset card
Data Studio
Files
Files and versions
xet
Community
1
main
TelegramGuard
/
Dockerfile
ilang-ai
v4.4: webhook mode for Cloud Run / Railway / Render
3e53fa5
27 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
236 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
RUN
mkdir
-p data
# Cloud Run uses 8080, HF Space uses 7860
ENV
PORT=
8080
EXPOSE
8080
CMD
[
"python"
,
"bot.py"
]