tg-channel-analysis/Containerfile
2026-02-22 21:33:23 +02:00

12 lines
155 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY pyproject.toml .
RUN pip install --no-cache-dir .
COPY bot/ bot/
VOLUME /app/data
CMD ["python", "-m", "bot"]