updated base image
node: uid/gid changes to 101:101
This commit is contained in:
parent
992e056af7
commit
41306e4da8
12
Dockerfile
12
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"]
|
||||
|
Loading…
x
Reference in New Issue
Block a user