Create Dockerfile

pull/1/head
RandomNinjaAtk 4 years ago committed by GitHub
parent 09bfc17a8f
commit d21a55aac9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
Loading…
Cancel
Save