From 56c44bd008723b0fb009034ccbe54d2a7627ef31 Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Fri, 12 Jun 2026 08:33:40 -0400 Subject: [PATCH] fix: remove pywin32 from requirements.txt (Windows-only package) pywin32 is a Windows-only dependency not available on pip for Linux. Remove it after unpinning to allow requirements install to complete. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 01d0638..b8d981d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,6 +34,7 @@ RUN export SABNZBD_VERSION=3.7.2 PAR2CMDLINE_VERSION=v0.6.14-mt1 && \ tar xzf /tmp/sabnzbd.tar.gz && \ mv SABnzbd-* sabnzbd && \ sed -i 's/==.*//' /sabnzbd/requirements.txt && \ + sed -i '/pywin32/d' /sabnzbd/requirements.txt && \ 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} && \