Updated Dockerfile

This commit is contained in:
James Munnelly
2015-09-08 10:34:03 +01:00
parent 06b3caa923
commit 9e42a036f0
2 changed files with 16 additions and 8 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM busybox
RUN mkdir /pms && \
cd /pms && \
wget -O pms.deb "https://downloads.plex.tv/plex-media-server/0.9.12.11.1406-8403350/plexmediaserver_0.9.12.11.1406-8403350_amd64.deb" && \
ar vx pms.deb && \
tar -zxf data.tar.gz && \
mv usr/lib/plexmediaserver /plexmediaserver && \
cd / && \
rm -Rf /pms
WORKDIR /plexmediaserver
ENV LD_LIBRARY_PATH "/plexmediaserver"
ENTRYPOINT ["/plexmediaserver/Resources/Plex New Transcoder"]
-8
View File
@@ -1,8 +0,0 @@
FROM scratch
ADD "Plex New Transcoder" "/Plex New Transcoder"
ADD "libraries/" "/libraries"
ENV LD_LIBRARY_PATH "/libraries"
ENTRYPOINT ["/Plex New Transcoder"]