From 0e9dd75328d80638295a6960f693746739e3463d Mon Sep 17 00:00:00 2001 From: levywang Date: Tue, 11 Mar 2025 17:35:07 +0800 Subject: [PATCH] fix(Dockerfile):python module --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 209072a..795a53a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /app # 安装依赖 RUN apt-get update && apt-get install -y --no-install-recommends nginx -RUN pip install --no-cache-dir beautifulsoup4 fastapi requests uvicorn hydra-core curl_cffi +RUN pip install --no-cache-dir beautifulsoup4 fastapi requests uvicorn hydra-core curl_cffi schedule # 复制应用代码 COPY . /app