Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# ============================================================
FROM python:3.11-slim AS builder

WORKDIR /build
WORKDIR /app

# Copy uv binary from the official image
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
Expand Down Expand Up @@ -33,7 +33,7 @@ RUN groupadd -r appuser && useradd -r -g appuser appuser
WORKDIR /app

# Copy the virtual environment from the builder
COPY --from=builder /build/.venv /app/.venv
COPY --from=builder /app/.venv /app/.venv

# Copy application source
COPY pyproject.toml ./
Expand Down
Loading