Skip to content

Commit 3921ff8

Browse files
committed
Fix Dockerfile: Correct dependency installation and copy commands
1 parent a95a92d commit 3921ff8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ WORKDIR /app
1717
FROM base AS builder
1818

1919
# Copy dependency files
20-
COPY pyproject.toml ./
20+
COPY pyproject.toml README.md ./
21+
COPY app ./app
2122

2223
# Install dependencies
23-
RUN uv pip install --system -e .
24+
RUN uv pip install --system .
2425

2526
# Stage 3: Runtime stage
2627
FROM base AS runtime

0 commit comments

Comments
 (0)