From 444bed894dcb9cff0df894b067b9481f1ad080e8 Mon Sep 17 00:00:00 2001 From: Djeex Date: Mon, 24 Aug 2026 03:03:30 +0000 Subject: [PATCH] Update python Docker tag to v3.14.7 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e125dbd..091e283 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.15-alpine AS builder +FROM python:3.14.7-alpine AS builder WORKDIR /app @@ -7,7 +7,7 @@ RUN apk add --no-cache gcc musl-dev jpeg-dev zlib-dev COPY requirements.txt . RUN pip wheel --no-cache-dir --wheel-dir=/wheels -r requirements.txt -FROM python:3.13.15-alpine AS base +FROM python:3.14.7-alpine AS base WORKDIR /app