fix uv in dockerfile

This commit is contained in:
Brian Rosner 2025-01-11 15:09:40 -07:00
parent 98b4a6211f
commit 806c8103dd

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