updated base image

node: uid/gid changes to 101:101
This commit is contained in:
dave 2019-08-09 21:11:37 -07:00
parent 992e056af7
commit 41306e4da8
1 changed files with 7 additions and 5 deletions

View File

@ -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"]