We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3921ff8 commit 73cb655Copy full SHA for 73cb655
1 file changed
Dockerfile
@@ -29,8 +29,9 @@ FROM base AS runtime
29
# Create non-root user for security
30
RUN groupadd -r appuser && useradd -r -g appuser appuser
31
32
-# Copy installed packages from builder
+# Copy installed packages and executables from builder
33
COPY --from=builder /usr/local/lib/python3.13/site-packages /usr/local/lib/python3.13/site-packages
34
+COPY --from=builder /usr/local/bin /usr/local/bin
35
36
# Copy application code
37
COPY app /app/app
0 commit comments