Sonarr V4? Switch to alpine commands for base image update...

pull/24/head
RandomNinjaAtk 2 years ago committed by GitHub
parent c2195e8f26
commit 882f31da99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,21 +8,23 @@ ENV videoFormat="bestvideo*+bestaudio/best"
RUN \ RUN \
echo "************ install packages ************" && \ echo "************ install packages ************" && \
apt-get update && \ apk add -U --update --no-cache \
apt-get install -y \ flac \
opus-tools \
jq \
git \ git \
wget \ wget \
python3 \
python3-pip \
ffmpeg \
mkvtoolnix \ mkvtoolnix \
zip \ python3-dev \
unzip \ libc-dev \
tidy && \ py3-pip \
echo "************ install python packages ************" && \ gcc \
python3 -m pip install --no-cache-dir -U \ ffmpeg \
yq \
yt-dlp && \ yt-dlp && \
echo "************ install python packages ************" && \
pip install --upgrade --no-cache-dir -U \
excludarr \
yq && \
echo "************ setup SMA ************" && \ echo "************ setup SMA ************" && \
echo "************ setup directory ************" && \ echo "************ setup directory ************" && \
mkdir -p ${SMA_PATH} && \ mkdir -p ${SMA_PATH} && \
@ -36,11 +38,11 @@ RUN \
chmod g+w ${SMA_PATH}/config/sma.log && \ chmod g+w ${SMA_PATH}/config/sma.log && \
echo "************ install pip dependencies ************" && \ echo "************ install pip dependencies ************" && \
python3 -m pip install --user --upgrade pip && \ 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 ************" && \ echo "************ install recyclarr ************" && \
mkdir -p /recyclarr && \ mkdir -p /recyclarr && \
wget "https://github.com/recyclarr/recyclarr/releases/latest/download/recyclarr-linux-x64.zip" -O "/recyclarr/recyclarr.zip" && \ 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 && \ unzip -o /recyclarr/recyclarr.zip -d /recyclarr &>/dev/null && \
chmod 777 /recyclarr/recyclarr chmod 777 /recyclarr/recyclarr
WORKDIR /config WORKDIR /config

Loading…
Cancel
Save