build: bump to Python 3.14 and update dependencies

This commit is contained in:
2026-07-08 13:42:50 +02:00
parent b7a887b68b
commit ea6955f7fb
4 changed files with 121 additions and 13 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
# Multi-stage build for smaller image size
FROM python:3.9-alpine AS python-base
FROM python:3.14-alpine AS python-base
# Install runtime dependencies
RUN apk add --no-cache curl
@@ -29,7 +29,7 @@ RUN pip install --no-cache-dir -r requirements.txt
FROM python-base
# Copy installed Python packages and binaries from builder stage
COPY --from=builder /usr/local/lib/python3.9/site-packages /usr/local/lib/python3.9/site-packages
COPY --from=builder /usr/local/lib/python3.14/site-packages /usr/local/lib/python3.14/site-packages
COPY --from=builder /usr/local/bin /usr/local/bin
# Copy application files