From 90b41b1a7176ab0c731cbae62ad6fd809c81c5e5 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Sun, 6 Mar 2022 12:39:44 -0500 Subject: [PATCH] v1.0.81 - move to alpine... --- Dockerfile.unstable | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/Dockerfile.unstable b/Dockerfile.unstable index acddfd9..fa76cc9 100644 --- a/Dockerfile.unstable +++ b/Dockerfile.unstable @@ -2,7 +2,7 @@ FROM linuxserver/sabnzbd:unstable LABEL maintainer="RandomNinjaAtk" ENV TITLE="SABnzbd Extended" -ENV VERSION="1.0.8" +ENV VERSION="1.0.81" ENV SMA_PATH /usr/local/sma ENV VIDEO_LANG eng ENV VIDEO_SMA FALSE @@ -15,24 +15,14 @@ ENV AUDIO_DSFA TRUE ENV AUDIO_DSFAS 150M RUN \ - echo "************ install dependencies ************" && \ - apt-get update && \ - # apt-get install -y software-properties-common && \ - # add-apt-repository ppa:jonathonf/ffmpeg-4 -y && \ echo "************ install and update packages ************" && \ - apt-get update && \ - apt-get install -y \ - mkvtoolnix \ - mp3val \ + apk add -U --update --no-cache \ flac \ opus-tools \ jq \ git \ - ffmpeg \ - python3 \ - python3-pip && \ - apt-get purge --auto-remove -y && \ - apt-get clean && \ + mkvtoolnix \ + ffmpeg && \ echo "************ setup SMA ************" && \ echo "************ setup directory ************" && \ mkdir -p ${SMA_PATH} && \