Update Dockerfile

This commit is contained in:
ThinkBeDo 2025-09-19 19:24:21 -05:00 committed by GitHub
parent 3efe085a92
commit 5749edc720
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,7 +30,7 @@ RUN groupadd -r app && useradd -r -d /app -g app app
COPY pyproject.toml uv.lock ./
# Install dependencies first (better layer caching)
RUN --mount=type=cache,target=/root/.cache/uv \
RUN --mount=type=cache,id=uv,target=/root/.cache/uv \
uv sync --frozen --no-dev
# Copy application code