diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d2500f7..be33cc2 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -52,7 +52,7 @@ jobs: dockerfile: ./Docker/PlexAniSync/Dockerfile imagename: ${{ github.repository_owner }}/plexanisync eventname: ${{ github.event_name }} - platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 + platforms: linux/amd64,linux/arm/v7,linux/arm64 secrets: inherit build-docker-tautulli: @@ -62,5 +62,5 @@ jobs: dockerfile: ./Docker/Tautulli/Dockerfile imagename: ${{ github.repository_owner }}/tautulli-plexanisync eventname: ${{ github.event_name }} - platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 + platforms: linux/amd64,linux/arm/v7,linux/arm64 secrets: inherit diff --git a/Docker/PlexAniSync/Dockerfile b/Docker/PlexAniSync/Dockerfile index 1654e32..c08c1dc 100644 --- a/Docker/PlexAniSync/Dockerfile +++ b/Docker/PlexAniSync/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11 AS builder +FROM python:3.12 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.11-slim +FROM python:3.12-slim WORKDIR /plexanisync @@ -20,7 +20,7 @@ COPY --from=builder /root/.local /root/.local RUN chmod -R a+rX /root # update PATH environment variable ENV PATH=/root/.local:$PATH -ENV PYTHONPATH=/root/.local/lib/python3.11/site-packages +ENV PYTHONPATH=/root/.local/lib/python3.12/site-packages ENV PLEX_SECTION=Anime \ PLEX_URL=http://127.0.0.1:32400 \