From 6ea4b8ff317df56a322f661b2d4b6d4976f0af8e Mon Sep 17 00:00:00 2001 From: Byron Wang Date: Tue, 10 Feb 2026 18:14:49 +0800 Subject: [PATCH] upgrade setuptools version to 82.0.0 --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index f9476e60a5..b46fda8b93 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /app/api # Install uv ENV UV_VERSION=0.8.9 -RUN pip3 install --no-cache-dir uv==${UV_VERSION} +RUN pip3 install --no-cache-dir uv==${UV_VERSION} setuptools==82.0.0 # production stage FROM base AS production