From 882f31da99a476fa4ae4af9729e420a36d6d5b75 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Wed, 30 Nov 2022 06:56:34 -0500 Subject: [PATCH] Sonarr V4? Switch to alpine commands for base image update... --- amd64.dockerfile | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/amd64.dockerfile b/amd64.dockerfile index e18b10d..2aee8cf 100644 --- a/amd64.dockerfile +++ b/amd64.dockerfile @@ -8,21 +8,23 @@ ENV videoFormat="bestvideo*+bestaudio/best" RUN \ echo "************ install packages ************" && \ - apt-get update && \ - apt-get install -y \ + apk add -U --update --no-cache \ + flac \ + opus-tools \ + jq \ git \ wget \ - python3 \ - python3-pip \ - ffmpeg \ mkvtoolnix \ - zip \ - unzip \ - tidy && \ - echo "************ install python packages ************" && \ - python3 -m pip install --no-cache-dir -U \ - yq \ + python3-dev \ + libc-dev \ + py3-pip \ + gcc \ + ffmpeg \ yt-dlp && \ + echo "************ install python packages ************" && \ + pip install --upgrade --no-cache-dir -U \ + excludarr \ + yq && \ echo "************ setup SMA ************" && \ echo "************ setup directory ************" && \ mkdir -p ${SMA_PATH} && \ @@ -36,11 +38,11 @@ RUN \ chmod g+w ${SMA_PATH}/config/sma.log && \ echo "************ install pip dependencies ************" && \ python3 -m pip install --user --upgrade pip && \ - pip3 install -r ${SMA_PATH}/setup/requirements.txt && \ + pip3 install -r ${SMA_PATH}/setup/requirements.txt && \ echo "************ install recyclarr ************" && \ mkdir -p /recyclarr && \ - wget "https://github.com/recyclarr/recyclarr/releases/latest/download/recyclarr-linux-x64.zip" -O "/recyclarr/recyclarr.zip" && \ - unzip -o /recyclarr/recyclarr.zip -d /recyclarr && \ + wget "https://github.com/recyclarr/recyclarr/releases/latest/download/recyclarr-linux-musl-x64.zip" -O "/recyclarr/recyclarr.zip" && \ + unzip -o /recyclarr/recyclarr.zip -d /recyclarr &>/dev/null && \ chmod 777 /recyclarr/recyclarr WORKDIR /config