From 2503b8b85cb24ed0b8d9c3f9655cd775957241c5 Mon Sep 17 00:00:00 2001 From: cyy_mac Date: Tue, 24 Mar 2026 22:49:09 +0800 Subject: [PATCH] fix docker /. problem --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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