2
0
mirror of https://github.com/spritsail/plex-media-server.git synced 2024-07-30 17:16:10 +00:00
plex-media-server/Dockerfile

28 lines
1.0 KiB
Docker
Raw Normal View History

2017-05-12 16:21:10 +00:00
FROM adamant/busybox:libressl
2016-08-26 21:26:39 +00:00
MAINTAINER Adam Dodman <adam.dodman@gmx.com>
2017-05-11 12:58:16 +00:00
ENV UID=900 GID=900
2016-08-26 21:26:39 +00:00
ADD start_pms.patch /tmp/start_pms.patch
WORKDIR /tmp
RUN wget http://ftp.de.debian.org/debian/pool/main/g/gcc-4.9/libstdc++6_4.9.2-10_amd64.deb \
2017-05-12 00:39:07 +00:00
&& wget http://ftp.de.debian.org/debian/pool/main/g/gcc-4.9/libgcc1_4.9.2-10_amd64.deb \
&& dpkg-deb -x libstdc++6*.deb . \
&& dpkg-deb -x libgcc1*.deb . \
# We only need the lib files, everything else is debian junk.
&& mv /tmp/usr/lib/x86_64-linux-gnu/* /lib \
&& mv /tmp/lib/x86_64-linux-gnu/* /lib \
2016-08-26 21:26:39 +00:00
&& wget -O plexmediaserver.deb 'https://plex.tv/downloads/latest/1?channel=8&build=linux-ubuntu-x86_64&distro=ubuntu' \
&& dpkg-deb -x plexmediaserver.deb . \
# Move usr/lib and start_pms. Everything else is useless
&& mv usr/lib/plexmediaserver /usr/lib \
&& mv usr/sbin/start_pms /usr/sbin \
&& patch /usr/sbin/start_pms < /tmp/start_pms.patch \
&& find /tmp -mindepth 1 -delete
2016-08-26 21:26:39 +00:00
WORKDIR /usr/lib/plexmediaserver
2016-08-26 21:26:39 +00:00
ENTRYPOINT ["/sbin/tini", "--"]
2017-05-14 16:51:33 +00:00
CMD exec su-exec $UID:$GID start_pms