diff --git a/arm64v8.dockerfile b/arm64v8.dockerfile index 552aafe..0d7978f 100644 --- a/arm64v8.dockerfile +++ b/arm64v8.dockerfile @@ -18,21 +18,21 @@ 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 && \ + python3 \ + py3-pip \ + yt-dlp \ + ffmpeg && \ echo "************ install python packages ************" && \ python3 -m pip install --no-cache-dir -U \ - yq \ - yt-dlp && \ + excludarr \ + yq && \ echo "************ setup SMA ************" && \ echo "************ setup directory ************" && \ mkdir -p ${SMA_PATH} && \ @@ -46,11 +46,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-arm64.zip" -O "/recyclarr/recyclarr.zip" && \ - unzip -o /recyclarr/recyclarr.zip -d /recyclarr && \ + wget "https://github.com/recyclarr/recyclarr/releases/latest/download/recyclarr-linux-musl-arm64.zip" -O "/recyclarr/recyclarr.zip" && \ + unzip -o /recyclarr/recyclarr.zip -d /recyclarr &>/dev/null && \ chmod 777 /recyclarr/recyclarr WORKDIR /config