TelegramGuard / Dockerfile
ilang-ai
fix: HF Space health check on port 7860 + Node.js 24 Actions warning
59295ba
raw
history blame
180 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
EXPOSE 7860
CMD ["python", "bot.py"]