fix(ci): usage of uv run and docker env path

This commit is contained in:
aserper
2025-12-14 00:09:07 -05:00
parent e9708ed055
commit 3a26460f25
2 changed files with 8 additions and 5 deletions

View File

@@ -19,6 +19,9 @@ COPY pyproject.toml uv.lock /app/
# Install dependencies
RUN uv sync --frozen --no-dev
# Place executables in the environment at the front of the path
ENV PATH="/app/.venv/bin:$PATH"
# Copy the application code
COPY . /app