From e5b11575194ac0162347a2cbaa75ae89e7cc7560 Mon Sep 17 00:00:00 2001 From: O1Si <45961392+O1Si@users.noreply.github.com> Date: Sat, 25 Dec 2021 00:23:12 +0800 Subject: [PATCH] fix: COPY config.yaml on Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eee1585..f2bd246 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ COPY ./utils /srv/utils/ COPY ./requirements.txt /tmp -COPY ./config.env ./miuitask.py /srv/ +COPY ./config.yaml ./miuitask.py /srv/ RUN pip install --no-cache-dir -i https://mirrors.bfsu.edu.cn/pypi/web/simple -r /tmp/requirements.txt && \ rm -rf /tmp/* && \