From 2d4e8397ef73352c7c90ba1ec8d3e5fd07c71ade Mon Sep 17 00:00:00 2001 From: chenwj113 Date: Tue, 11 Jun 2024 17:36:34 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E6=9B=B4=E6=96=B0Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- RuntimeDockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RuntimeDockerfile b/RuntimeDockerfile index d5ef77e..963ad1c 100644 --- a/RuntimeDockerfile +++ b/RuntimeDockerfile @@ -24,7 +24,8 @@ RUN pip install poetry -i https://mirrors.aliyun.com/pypi/simple/ \ # 应用启动 FROM python:3.11-slim -COPY --from=build /install /usr/local +# COPY --from=build /install /usr/local/ +COPY --from=build /install/*/lib/python3.11/ /usr/local/lib/python3.11/ RUN mkdir -p /app