From 2edb1909df09ce1d9de017bf037d158f61f22123 Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Fri, 12 Jun 2026 08:15:26 -0400 Subject: [PATCH] fix: remove pip --upgrade pip (Debian's pip 25.1.1 has no RECORD file) Debian's pip 25.1.1 is already installed without a RECORD file, causing the upgrade to fail. The system pip is already recent enough for requirements.txt. --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6bbddae..a164452 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,6 @@ RUN export SABNZBD_VERSION=3.7.2 PAR2CMDLINE_VERSION=v0.6.14-mt1 && \ curl -SL -o /tmp/sabnzbd.tar.gz https://github.com/sabnzbd/sabnzbd/releases/download/${SABNZBD_VERSION}/SABnzbd-${SABNZBD_VERSION}-src.tar.gz && \ tar xzf /tmp/sabnzbd.tar.gz && \ mv SABnzbd-* sabnzbd && \ - pip3 install --upgrade pip && \ pip3 install -r /sabnzbd/requirements.txt && \ chown -R sabnzbd: sabnzbd && \ curl -o /tmp/par2cmdline-mt.tar.gz https://codeload.github.com/jkansanen/par2cmdline-mt/tar.gz/${PAR2CMDLINE_VERSION} && \