From 9b7c74a5d9cb59be699bca2a1034df7ccdcfd866 Mon Sep 17 00:00:00 2001 From: Bowen Liang Date: Sat, 6 Jul 2024 14:17:34 +0800 Subject: [PATCH] chore: skip pip upgrade preparation in api dockerfile (#5999) --- api/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/api/Dockerfile b/api/Dockerfile index 53c33a7659..55776f80e1 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -5,8 +5,7 @@ WORKDIR /app/api # Install Poetry ENV POETRY_VERSION=1.8.3 -RUN pip install --no-cache-dir --upgrade pip && \ - pip install --no-cache-dir --upgrade poetry==${POETRY_VERSION} +RUN pip install --no-cache-dir poetry==${POETRY_VERSION} # Configure Poetry ENV POETRY_CACHE_DIR=/tmp/poetry_cache