Skip to content

Commit 9f0216e

Browse files
committed
Fix docker image not finding package
1 parent 41c8331 commit 9f0216e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN uv pip install --no-cache -r requirements.txt --system
99
FROM python:3.9-slim
1010

1111
WORKDIR /app
12-
COPY --from=builder /usr/local/lib/python3.9/site-packages/ /usr/local/lib/python3.9/site-packages/
12+
COPY --from=builder /usr/local /usr/local
1313
COPY . .
1414

1515
ENV PORT=5000

0 commit comments

Comments
 (0)