TelegramGuard / Dockerfile
ilang-ai
v4.4: webhook mode for Cloud Run / Railway / Render
3e53fa5
raw
history blame contribute delete
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"]