diff --git a/Docker/PlexAniSync/Dockerfile b/Docker/PlexAniSync/Dockerfile index c08c1dc..c710879 100644 --- a/Docker/PlexAniSync/Dockerfile +++ b/Docker/PlexAniSync/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12 AS builder +FROM python:3.14 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.14-slim WORKDIR /plexanisync