Skip to content

Commit 08f15e2

Browse files
authored
Removed buildKit till full support
1 parent 28b5c14 commit 08f15e2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

prod.Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ WORKDIR /extension
1919
COPY pyproject.toml uv.lock ./
2020

2121
# 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
22+
# Removed BuildKit cache mount
23+
RUN uv sync --frozen --all-groups --no-install-project
2424

2525
COPY . .
2626

2727
# Re-run sync to install project itself
28-
RUN --mount=type=cache,target=/root/.cache/uv \
29-
uv sync --frozen --all-groups
28+
# Removed BuildKit cache mount
29+
RUN uv sync --frozen --all-groups
3030

3131
CMD ["swoext", "run", "--no-color"]

0 commit comments

Comments
 (0)