Delete Dockerfile.unstable

master
RandomNinjaAtk 2 years ago committed by GitHub
parent addcae1e07
commit ef51eb9ee3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,51 +0,0 @@
FROM linuxserver/sabnzbd:unstable
LABEL maintainer="RandomNinjaAtk"
ENV TITLE="SABnzbd Extended"
ENV VERSION="1.0.83"
ENV SMA_PATH /usr/local/sma
ENV VIDEO_LANG eng
ENV VIDEO_SMA FALSE
ENV VIDEO_SMA_TAGGING FALSE
ENV AUDIO_VERIFY TRUE
ENV AUDIO_FORMAT FLAC
ENV AUDIO_BITRATE 320
ENV AUDIO_REPLAYGAIN FALSE
ENV AUDIO_DSFA TRUE
ENV AUDIO_DSFAS 153600k
ENV RequireAudioQualityMatch false
RUN \
echo "************ install and update packages ************" && \
apk add -U --update --no-cache \
flac \
opus-tools \
jq \
git \
mkvtoolnix \
ffmpeg && \
echo "************ setup SMA ************" && \
echo "************ setup directory ************" && \
mkdir -p ${SMA_PATH} && \
echo "************ download repo ************" && \
git clone https://github.com/mdhiggins/sickbeard_mp4_automator.git ${SMA_PATH} && \
mkdir -p ${SMA_PATH}/config && \
echo "************ create logging file ************" && \
mkdir -p ${SMA_PATH}/config && \
touch ${SMA_PATH}/config/sma.log && \
chgrp users ${SMA_PATH}/config/sma.log && \
chmod g+w ${SMA_PATH}/config/sma.log && \
echo "************ install pip dependencies ************" && \
python3 -m pip install --upgrade pip && \
pip3 install -r ${SMA_PATH}/setup/requirements.txt
# copy local files
COPY root/ /
# set work directory
WORKDIR /config
# ports and volumes
EXPOSE 8080 9090
VOLUME /config
Loading…
Cancel
Save