From 41306e4da86f1b6e645dfa57fa82f9ad56e956dc Mon Sep 17 00:00:00 2001 From: dave Date: Fri, 9 Aug 2019 21:11:37 -0700 Subject: [PATCH] updated base image node: uid/gid changes to 101:101 --- Dockerfile | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3d343e9..5f2e844 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,13 @@ -FROM ubuntu:trusty +FROM ubuntu:bionic -RUN apt-get update ;\ - apt-get install -y wget ;\ - wget -q -O /tmp/plex.deb "https://plex.tv/downloads/latest/1?channel=16&build=linux-ubuntu-x86_64&distro=ubuntu" ;\ - dpkg -i /tmp/plex.deb ;\ +RUN apt-get update && \ + apt-get install -y wget sudo && \ + wget -q -O /tmp/plex.deb "https://plex.tv/downloads/latest/1?channel=16&build=linux-ubuntu-x86_64&distro=ubuntu" && \ + dpkg -i /tmp/plex.deb && \ rm -rf /tmp/plex.deb /var/lib/apt/lists/* ADD start /start VOLUME /var/lib/plexmediaserver/ + +ENTRYPOINT ["/start"]