fix uv in dockerfile (#12)

This commit is contained in:
Brian Rosner 2025-01-11 15:20:41 -07:00 committed by GitHub
commit 029b79f56e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,12 +30,10 @@ RUN apt-get update && \
COPY --from=ghcr.io/astral-sh/uv:0.5.18 /uv /uvx /bin/
WORKDIR $APP_HOME
COPY uv.lock pyproject.toml ./
COPY . .
RUN uv sync --frozen
COPY . .
## dev image
FROM base AS dev