We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aac62ea commit 9df0b30Copy full SHA for 9df0b30
1 file changed
Dockerfile
@@ -5,9 +5,8 @@ MAINTAINER Stian Larsen <lonixx@gmail.com>
5
RUN apt-get -q update && \
6
PLEXURL=$(curl -s https://tools.linuxserver.io/latest-plex.json| grep "ubuntu64" | cut -d '"' -f 4) && \
7
apt-get install -qy dbus avahi-daemon wget && \
8
-wget -P /tmp "$PLEXURL" && \
9
-dpkg -i /tmp/plexmediaserver_*_amd64.deb && \
10
-rm -f /tmp/plexmediaserver_*_amd64.deb && \
+curl -L 'https://plex.tv/downloads/latest/1?channel=8&build=linux-ubuntu-x86_64&distro=ubuntu' -o /tmp/plexmediaserver.deb
+dpkg -i /tmp/plexmediaserver.deb && rm -f /tmp/plexmediaserver.deb && \
11
apt-get clean && \
12
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
13
0 commit comments