Lock dependencies during sync in Dockerfile

This commit is contained in:
Joakim Hellsén 2026-01-09 20:49:55 +01:00
commit f4c9d4b69a
No known key found for this signature in database

View file

@ -9,7 +9,7 @@ ENV UV_PYTHON_DOWNLOADS=0
WORKDIR /app WORKDIR /app
COPY . /app/ COPY . /app/
RUN uv sync RUN uv sync --locked
RUN chmod +x /app/start.sh RUN chmod +x /app/start.sh
ENV PATH="/app/.venv/bin:$PATH" ENV PATH="/app/.venv/bin:$PATH"