Update setup.bash
This commit is contained in:
parent
c58b070b09
commit
374c3cceff
1 changed files with 12 additions and 10 deletions
|
@ -15,6 +15,7 @@ apk add -U --update --no-cache \
|
|||
gcc \
|
||||
ffmpeg && \
|
||||
echo "************ install python packages ************" && \
|
||||
pip install --upgrade pip==24.1 && \
|
||||
pip install --upgrade --no-cache-dir -U --break-system-packages \
|
||||
excludarr \
|
||||
yt-dlp \
|
||||
|
@ -48,18 +49,19 @@ 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 --break-system-packages --upgrade pip && \
|
||||
python3 -m pip install --break-system-packages --upgrade pip==24.1 && \
|
||||
pip3 install --break-system-packages -r ${SMA_PATH}/setup/requirements.txt || true
|
||||
|
||||
echo "************ install qtfaststart ************"
|
||||
pip3 install qtfaststart || echo "qtfaststart installation failed, continuing..."
|
||||
echo "************ install qtfaststart ************" && \
|
||||
git clone https://github.com/danielgtaylor/qtfaststart.git /tmp/qtfaststart && \
|
||||
cd /tmp/qtfaststart && \
|
||||
python3 setup.py install
|
||||
|
||||
echo "************ install recyclarr ************" && \
|
||||
mkdir -p /recyclarr && \
|
||||
wget "https://github.com/recyclarr/recyclarr/releases/latest/download/recyclarr-linux-musl-x64.tar.xz" -O "/recyclarr/recyclarr.tar.xz" && \
|
||||
tar -xf /recyclarr/recyclarr.tar.xz -C /recyclarr &>/dev/null && \
|
||||
chmod 777 /recyclarr/recyclarr
|
||||
|
||||
chmod 777 /recyclarr/recyclarr && \
|
||||
apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/community dotnet8-runtime
|
||||
|
||||
mkdir -p /custom-services.d
|
||||
|
|
Loading…
Reference in a new issue