Skip to content

Commit c1ca74d

Browse files
Revert sync command argument
The dependencies should be synced with `--frozen` not `--locked` because they are already locked in the `uv.lock` file and the `pyproject.toml` does not need checking. See https://docs.astral.sh/uv/reference/cli/#uv-sync Signed-off-by: Matt Norton <matt@carrotmanmatt.com>
1 parent 9b762a7 commit c1ca74d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ WORKDIR /app
1111
RUN --mount=type=cache,target=/root/.cache/uv \
1212
--mount=type=bind,source=uv.lock,target=uv.lock \
1313
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
14-
uv sync --locked --no-install-project --no-group dev
14+
uv sync --frozen --no-install-project --no-group dev
1515

1616
COPY LICENSE /app/
1717
COPY config.py main.py messages.json /app/

0 commit comments

Comments
 (0)