We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28b5c14 commit 08f15e2Copy full SHA for 08f15e2
prod.Dockerfile
@@ -19,13 +19,13 @@ WORKDIR /extension
19
COPY pyproject.toml uv.lock ./
20
21
# Install all dependencies (including dev tools for testing)
22
-RUN --mount=type=cache,target=/root/.cache/uv \
23
- uv sync --frozen --all-groups --no-install-project
+# Removed BuildKit cache mount
+RUN uv sync --frozen --all-groups --no-install-project
24
25
COPY . .
26
27
# Re-run sync to install project itself
28
29
- uv sync --frozen --all-groups
+RUN uv sync --frozen --all-groups
30
31
CMD ["swoext", "run", "--no-color"]
0 commit comments