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 \