Skip to content

Commit

Permalink
Upgrade pip in docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
reconman authored Jan 14, 2024
1 parent a2f3acb commit 6159bce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Docker/PlexAniSync/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ RUN apt-get update && \
build-essential \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

RUN pip install --upgrade pip
COPY requirements.txt .
# install dependencies to the local user directory (eg. /root/.local)
RUN pip install --user --no-warn-script-location -r requirements.txt
Expand Down
1 change: 1 addition & 0 deletions Docker/Tautulli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ RUN apt-get update && \
build-essential \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

RUN pip install --upgrade pip
COPY requirements.txt .
# install dependencies to the local user directory (eg. /root/.local)
RUN pip install --user --no-warn-script-location -r requirements.txt
Expand Down

0 comments on commit 6159bce

Please sign in to comment.