From 958ac6bcfc9f3c5427b56be37e38d0e2cdd2fb57 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 00:40:44 +0000 Subject: [PATCH] chore(deps): update python docker tag to v3.13 --- Dockerfile | 4 ++-- Dockerfile.dev | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 34603b32..47c16ded 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-bookworm as builder +FROM python:3.13-bookworm as builder WORKDIR /app # Install build utilities and python requirements @@ -7,7 +7,7 @@ RUN --mount=type=cache,target=/root/.cache/pip pip install --user . --no-compile COPY ./ ./ # Stage 2: Production -FROM python:3.12-slim-bookworm +FROM python:3.13-slim-bookworm WORKDIR /app COPY --from=builder /root/.local /root/.local ENV PATH=/root/.local/bin:${PATH} diff --git a/Dockerfile.dev b/Dockerfile.dev index 8f767771..4e1cd4d8 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,5 +1,5 @@ # Use an official Python runtime as a parent image -FROM python:3.12 +FROM python:3.13 #################### # Install Graphite #