From d21a55aac93fb8e7eb17e5a9a1d8bfc0dc5f149b Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Wed, 4 Mar 2020 19:04:35 -0500 Subject: [PATCH] Create Dockerfile --- Dockerfile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..eb70bc8 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,34 @@ +FROM linuxserver/sabnzbd +LABEL maintainer="RandomNinjaAtk" + +ENV VERSION="1.0.0" + +RUN \ + # install dependancies + apt-get update -qq && \ + apt-get install -qq -y \ + mkvtoolnix \ + mp3val \ + flac \ + wget \ + nano \ + unzip \ + ffmpeg \ + opus-tools \ + jq && \ + apt-get purge --auto-remove -y && \ + apt-get clean + +RUN \ + # Download Scripts + mkdir root/scripts && \ + curl -o "root/scripts/AudioPostProcessing.bash" "https://raw.githubusercontent.com/RandomNinjaAtk/Scripts/master/sabnzbd/AudioPostProcessing.bash" + +WORKDIR / + +# copy local files +COPY root/ / + +# ports and volumes +EXPOSE 8080 9090 +VOLUME /config