From 1e398084085dc6ffa3ecb5aee2f25ea5817c421c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milien=20=28perso=29?= <4016501+unixfox@users.noreply.github.com> Date: Thu, 27 Nov 2025 18:28:48 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20chore:=20Update=20newer=20uv=20v?= =?UTF-8?q?ersion=20in=20Dockerfile=20(#10237)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: Update uv version in Dockerfile * chore: fix the path for uv --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7cda70178b..4b00949300 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN apk add --no-cache python3 py3-pip uv ENV LD_PRELOAD=/usr/lib/libjemalloc.so.2 # Add `uv` for extended MCP support -COPY --from=ghcr.io/astral-sh/uv:0.6.13 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.9.5-python3.12-alpine /usr/local/bin/uv /usr/local/bin/uvx /bin/ RUN uv --version RUN mkdir -p /app && chown node:node /app