From d863b4b056f9f549a639092d6c27b8f3f14322ed Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 01:21:50 +0000 Subject: [PATCH] Update python Docker tag to v3.13 --- Docker/PlexAniSync/Dockerfile | 4 ++-- Docker/Tautulli/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Docker/PlexAniSync/Dockerfile b/Docker/PlexAniSync/Dockerfile index c08c1dc..1cf56cf 100644 --- a/Docker/PlexAniSync/Dockerfile +++ b/Docker/PlexAniSync/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12 AS builder +FROM python:3.13 AS builder RUN apt-get update && \ apt-get install -y \ @@ -11,7 +11,7 @@ COPY requirements.txt . # install dependencies to the local user directory (eg. /root/.local) RUN pip install --user --no-warn-script-location -r requirements.txt -FROM python:3.12-slim +FROM python:3.13-slim WORKDIR /plexanisync diff --git a/Docker/Tautulli/Dockerfile b/Docker/Tautulli/Dockerfile index 82b5e1f..2df8324 100644 --- a/Docker/Tautulli/Dockerfile +++ b/Docker/Tautulli/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9 AS builder +FROM python:3.13 AS builder RUN apt-get update && \ apt-get install -y \