From e63197e89e8f0176149a097bf7c71023f1a2d79f Mon Sep 17 00:00:00 2001 From: Eugene Date: Thu, 10 Jul 2025 17:10:21 +0400 Subject: [PATCH] chore: bump uv to 0.7.19 in container (#266) Signed-off-by: Eugene --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 6b4616a..2b9929d 100644 --- a/Containerfile +++ b/Containerfile @@ -42,7 +42,7 @@ ENV \ ARG UV_SYNC_EXTRA_ARGS="" -RUN --mount=from=ghcr.io/astral-sh/uv:0.7.13,source=/uv,target=/bin/uv \ +RUN --mount=from=ghcr.io/astral-sh/uv:0.7.19,source=/uv,target=/bin/uv \ --mount=type=cache,target=/opt/app-root/src/.cache/uv,uid=1001 \ --mount=type=bind,source=uv.lock,target=uv.lock \ --mount=type=bind,source=pyproject.toml,target=pyproject.toml \ @@ -61,7 +61,7 @@ RUN echo "Downloading models..." && \ chmod -R g=u ${DOCLING_SERVE_ARTIFACTS_PATH} COPY --chown=1001:0 ./docling_serve ./docling_serve -RUN --mount=from=ghcr.io/astral-sh/uv:0.7.13,source=/uv,target=/bin/uv \ +RUN --mount=from=ghcr.io/astral-sh/uv:0.7.19,source=/uv,target=/bin/uv \ --mount=type=cache,target=/opt/app-root/src/.cache/uv,uid=1001 \ --mount=type=bind,source=uv.lock,target=uv.lock \ --mount=type=bind,source=pyproject.toml,target=pyproject.toml \