From 7a5d6004244a39f2112a047c176805476c4a7471 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 22:20:13 +0000 Subject: [PATCH] Update python Docker tag to v3.13 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 07e6002..69e4fe1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-slim as builder +FROM python:3.13-slim as builder # Install Poetry RUN pip install poetry @@ -12,7 +12,7 @@ COPY pyproject.toml poetry.lock ./ # Create a requirements.txt file RUN poetry export -f requirements.txt --output requirements.txt --without-hashes -FROM python:3.12-slim +FROM python:3.13-slim # Install ffmpeg RUN apt-get update && apt-get install ffmpeg -y --no-install-recommends