fix: recreate uv.lock in docker

This commit is contained in:
Piotr Dec 2025-11-29 01:51:07 +01:00
parent 22d333129d
commit 1ff4fd842b
Signed by: stawros
GPG key ID: 74B18A3F0F1E99C0

View file

@ -6,9 +6,8 @@ RUN apk update \
&& apk add gcc python3-dev musl-dev linux-headers
RUN --mount=type=cache,target=/root/.cache/uv \
--mount=type=bind,source=uv.lock,target=uv.lock \
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
uv sync --frozen --no-install-workspace
uv sync --no-install-workspace
ADD . /app