fix docker /. problem

This commit is contained in:
cyy_mac
2026-03-24 22:49:09 +08:00
parent d822c24e82
commit 2503b8b85c

View File

@@ -5,7 +5,8 @@ WORKDIR /app
COPY requirements.txt . COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
COPY main.py notifier.py . COPY main.py ./main.py
COPY config.yaml.example config.yaml COPY notifier.py ./notifier.py
COPY config.yaml.example ./config.yaml
CMD ["python", "main.py"] CMD ["python", "main.py"]