Files
Modreplybot/Dockerfile
T

10 lines
249 B
Docker
Raw Normal View History

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-08 21:32:51 +00:00
ENV PYTHONUNBUFFERED=1
2026-03-08 18:31:16 +00:00
CMD ["python", "modreplybot.py"]