From 2de2046b6c1af59242e3c4f78b6049ebe8fdf0bd Mon Sep 17 00:00:00 2001 From: jyong <718720800@qq.com> Date: Wed, 5 Mar 2025 15:01:47 +0800 Subject: [PATCH] fix metadata --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index 9d0ae00290c..0d4679b76ac 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -28,7 +28,7 @@ RUN apt-get update \ # Install Python dependencies COPY pyproject.toml poetry.lock ./ -RUN poetry install --no-cache --no-root +RUN poetry install --sync --no-cache --no-root # production stage FROM base AS production