Skip to content

Commit 35658d6

Browse files
committed
Removed need for gdebi
1 parent 4e5532d commit 35658d6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ MAINTAINER Stian Larsen <lonixx@gmail.com>
44
# Install Plex
55
RUN apt-get -q update && \
66
PLEXURL=$(curl -s https://tools.linuxserver.io/latest-plex.json| grep "ubuntu64" | cut -d '"' -f 4) && \
7-
apt-get install -qy dbus gdebi-core avahi-daemon wget && \
7+
apt-get install -qy dbus avahi-daemon wget && \
88
wget -P /tmp "$PLEXURL" && \
99
gdebi -n /tmp/plexmediaserver_*_amd64.deb && \
1010
rm -f /tmp/plexmediaserver_*_amd64.deb && \

init/30_update_plex.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ elif [[ "$VERSION" != "$INSTALLED" ]]; then
4444
last=$?
4545
done
4646
apt-get remove --purge -y plexmediaserver
47-
gdebi -n /tmp/plexmediaserver_"${VERSION}"_amd64.deb
47+
dpkg -i /tmp/plexmediaserver_"${VERSION}"_amd64.deb
4848
else
4949
echo "No need to update!"
5050
fi

0 commit comments

Comments
 (0)