From de6bb44d19e8a0234616f7b48f43f49038e39541 Mon Sep 17 00:00:00 2001 From: Rami Date: Thu, 23 Jan 2025 23:47:52 +0100 Subject: [PATCH] fix: Fixed Docker mount cache id prefix --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f8e5bb60..23e13b18 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,7 +51,7 @@ RUN mkdir -p /home/dataline/backend # https://docs.astral.sh/uv/guides/integration/docker/#non-editable-installs # Mount the lock and pyproject.toml to speed up image build time if these files are not changed RUN --mount=from=ghcr.io/astral-sh/uv,source=/uv,target=/bin/uv \ - --mount=type=cache,id=uvcache,target=/root/.cache/uv \ + --mount=type=cache,id=uv-cache,target=/root/.cache/uv \ --mount=type=bind,source=backend/uv.lock,target=uv.lock \ --mount=type=bind,source=backend/pyproject.toml,target=pyproject.toml \ uv sync --no-dev --frozen --no-install-project