File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11# Build stage
2- FROM python:3.13 -slim as builder
2+ FROM python:3.14 -slim as builder
33
44WORKDIR /app
55
@@ -19,7 +19,7 @@ COPY requirements.txt .
1919RUN pip install --no-cache-dir -r requirements.txt
2020
2121# Runtime stage
22- FROM python:3.13 -slim
22+ FROM python:3.14 -slim
2323
2424WORKDIR /app
2525
@@ -39,8 +39,8 @@ RUN groupadd -r -g 1000 appgroup \
3939 && mkdir -p /app/instance \
4040 && chown -R appuser:appgroup /app
4141
42- # Copy installed packages from builder stage
43- COPY --from=builder /usr/local/lib/python3.13/site-packages /usr/local/lib/python3.13/site-packages
42+ # Copy installed packages from builder stage (version-agnostic)
43+ COPY --from=builder /usr/local/lib/ /usr/local/lib/
4444COPY --from=builder /usr/local/bin /usr/local/bin
4545
4646# Copy application files and set ownership
Original file line number Diff line number Diff line change @@ -11,5 +11,5 @@ Werkzeug==3.1.3
1111requests == 2.32.5
1212
1313# Database drivers
14- psycopg [binary,pool ]== 3.2.3
15- PyMySQL == 1.1.1
14+ psycopg [binary,pool ]== 3.2.10
15+ PyMySQL == 1.1.2
You can’t perform that action at this time.
0 commit comments