From a3ea1a90fa962f253cdc3a4e4725653c9a9b38ea Mon Sep 17 00:00:00 2001 From: Patrick Double Date: Tue, 30 Jun 2015 11:59:59 -0500 Subject: [PATCH] Install dbus --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 63d7831..a9b2a6f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ CMD ["/sbin/my_init"] # Install Plex RUN apt-get -q update && \ VERSION=$(curl https://raw.githubusercontent.com/linuxserver/misc-files/master/plex-version/public) && \ -apt-get install -qy gdebi-core wget && \ +apt-get install -qy dbus gdebi-core wget && \ wget -P /tmp "http://downloads.plexapp.com/plex-media-server/$VERSION/plexmediaserver_${VERSION}_amd64.deb" && \ gdebi -n /tmp/plexmediaserver_${VERSION}_amd64.deb && \ rm -f /tmp/plexmediaserver_${VERSION}_amd64.deb && \