diff --git a/Dockerfile b/Dockerfile index 3d641e5..04a1782 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,5 +3,6 @@ FROM python:3.11-slim WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -COPY . . -CMD ["python", "modbot.py"] +COPY config.py . +COPY modreplybot.py . +CMD ["python", "modreplybot.py"]