You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
610 B
35 lines
610 B
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
|