From bcc4b5e0a0a0c57021b1bffe82edfc81fbc3ca5f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 22:58:55 +0000 Subject: [PATCH] Update python Docker tag to v3.13 --- .python-version | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.python-version b/.python-version index e4fba21..24ee5b1 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.12 +3.13 diff --git a/Dockerfile b/Dockerfile index 07f112d..87b8a79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Install uv -FROM python:3.12-slim AS builder +FROM python:3.13-slim AS builder COPY --from=ghcr.io/astral-sh/uv:latest /uv /bin/uv ENV UV_LINK_MODE=copy @@ -20,7 +20,7 @@ ADD . /app RUN --mount=type=cache,target=/root/.cache/uv \ uv sync --frozen --no-editable -FROM python:3.12-slim +FROM python:3.13-slim # Copy the environment, but not the source code COPY --from=builder --chown=app:app /app/.venv /app/.venv