parent
09bfc17a8f
commit
d21a55aac9
@ -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…
Reference in new issue