Update python Docker tag to v3.14
All checks were successful
Build and Publish Docker Image / build (pull_request) Successful in 10m28s

This commit is contained in:
Renovate Bot
2025-12-27 20:30:21 +00:00
parent 761c1b356c
commit 07754bc9fa
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
FROM python:3.13-alpine AS builder
FROM python:3.14-alpine AS builder
RUN apk update
RUN apk add --no-cache build-base libffi-dev cargo pkgconfig gcc python3-dev musl-dev linux-headers

View File

@@ -1,4 +1,4 @@
FROM python:3.10-slim
FROM python:3.14-slim
RUN apt-get update && apt-get install -y build-essential libssl-dev && rm -rf /var/lib/apt/lists/*