diff --git a/Dockerfile b/Dockerfile index 64949d2..febc69e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,8 @@ WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -COPY main.py notifier.py . -COPY config.yaml.example config.yaml +COPY main.py ./main.py +COPY notifier.py ./notifier.py +COPY config.yaml.example ./config.yaml CMD ["python", "main.py"] \ No newline at end of file