v1.0.6 - change pip3/pyhton3 -> pip/python

master
RandomNinjaAtk 4 years ago committed by GitHub
parent 22da0168e7
commit 95b1d9463a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2,7 +2,7 @@ FROM linuxserver/sabnzbd:unstable
LABEL maintainer="RandomNinjaAtk"
ENV TITLE="SABnzbd Extended"
ENV VERSION="1.0.5"
ENV VERSION="1.0.6"
ENV SMA_PATH /usr/local/sma
ENV VIDEO_LANG eng
ENV VIDEO_SMA FALSE
@ -30,9 +30,8 @@ RUN \
jq \
git \
ffmpeg \
python3 \
python3-pip \
ffmpeg && \
python \
python-pip && \
apt-get purge --auto-remove -y && \
apt-get clean && \
echo "************ setup SMA ************" && \
@ -47,8 +46,8 @@ RUN \
chgrp users ${SMA_PATH}/config/sma.log && \
chmod g+w ${SMA_PATH}/config/sma.log && \
echo "************ install pip dependencies ************" && \
python3 -m pip install --user --upgrade pip && \
pip3 install -r ${SMA_PATH}/setup/requirements.txt
python -m pip install --user --upgrade pip && \
pip install -r ${SMA_PATH}/setup/requirements.txt
# copy local files

Loading…
Cancel
Save