From a81416721786ac32dfd86f887ef67093555308da Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 16 Jun 2025 03:26:54 +0000 Subject: [PATCH] chore(deps): update python docker tag to v3.13 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cfb8d59..a311d3b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # ---- Stage 1: Build ---- -FROM python:3.12-slim AS builder +FROM python:3.13-slim AS builder WORKDIR /app @@ -19,7 +19,7 @@ COPY requirements.txt requirements.txt RUN pip install --no-cache-dir --prefix=/install -r requirements.txt # ---- Stage 2: Final Minimal Image ---- -FROM python:3.12-slim +FROM python:3.13-slim WORKDIR /app