2026-03-08 18:08:24 +00:00
|
|
|
# Dockerfile for building modreplybot image
|
|
|
|
|
FROM python:3.11-slim
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
COPY requirements.txt .
|
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
2026-03-08 18:31:16 +00:00
|
|
|
COPY config.py .
|
|
|
|
|
COPY modreplybot.py .
|
2026-03-12 22:56:57 +00:00
|
|
|
COPY update_checker.py .
|
2026-03-08 21:32:51 +00:00
|
|
|
ENV PYTHONUNBUFFERED=1
|
2026-03-08 18:31:16 +00:00
|
|
|
CMD ["python", "modreplybot.py"]
|