Skip to content

Commit 1882467

Browse files
authored
Fix Dockerfile mounts for dependency installation (#540)
1 parent f1cd48e commit 1882467

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ ENV UV_COMPILE_BYTECODE=1 \
2020

2121
# Install dependencies with cache
2222
RUN --mount=type=cache,target=/root/.cache/uv \
23-
--mount=type=bind,source=backend/uv.lock,target=uv.lock \
24-
--mount=type=bind,source=backend/pyproject.toml,target=pyproject.toml \
23+
--mount=type=bind,source=uv.lock,target=uv.lock \
24+
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
2525
uv sync --frozen --no-default-groups --group server
2626

2727
# === Runtime base server image ===

0 commit comments

Comments
 (0)