Skip to content

Commit

Permalink
Revert back to python 3.11 + 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
reconman authored May 11, 2024
1 parent 702e2ac commit 36a303f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Docker/PlexAniSync/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12 AS builder
FROM python:3.11 AS builder

RUN apt-get update && \
apt-get install -y \
Expand All @@ -15,7 +15,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.11-slim

WORKDIR /plexanisync

Expand Down
6 changes: 1 addition & 5 deletions Docker/Tautulli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
FROM python:3.12 AS builder
FROM python:3.9 AS builder

RUN apt-get update && \
apt-get install -y \
build-essential rustc git \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

# Install rust compiler for certifi
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
ENV PATH /root/.cargo/bin:$PATH

RUN pip install --upgrade pip
COPY Docker/Tautulli/pip.conf /etc/pip.conf
COPY requirements.txt .
Expand Down
3 changes: 2 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"ignoreDeps": ["inflect"]
},
"dockerfile": {
"extends": ["schedule:monthly"]
"extends": ["schedule:monthly"],
"automerge": false
},
"github-actions": {
"extends": ["group:all"],
Expand Down

0 comments on commit 36a303f

Please sign in to comment.