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 c7850ba05f
commit 49fd546b5e
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