Skip to content

Commit

Permalink
Drop arm/v6 support and try python 3.12 again (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
reconman authored Jun 3, 2024
1 parent fe0807b commit 528a372
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
6 changes: 3 additions & 3 deletions Docker/PlexAniSync/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11 AS builder
FROM python:3.12 AS builder

RUN apt-get update && \
apt-get install -y \
Expand All @@ -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

Expand All @@ -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 \
Expand Down

0 comments on commit 528a372

Please sign in to comment.