diff --git a/.drone.yml b/.drone.yml index 2fdab7a..7ca2175 100644 --- a/.drone.yml +++ b/.drone.yml @@ -44,30 +44,15 @@ steps: tags: - latest - "%label io.spritsail.version.plex | %remsuf [0-9a-f]+$ | %auto 2" - environment: - DOCKER_PASSWORD: - from_secret: docker_password - DOCKER_USERNAME: + username: from_secret: docker_username + password: + from_secret: docker_password when: branch: - master event: - push - - tag - -- name: notify - pull: always - image: spritsail/notify - environment: - NOTIFY_TOKEN: - from_secret: notify_token - WEBHOOK_URL: - from_secret: webhook_url - when: - status: - - success - - failure --- kind: signature diff --git a/Dockerfile b/Dockerfile index 9f5a78e..fdbbf3a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -ARG PLEX_VER=1.18.4.2171-ac2afe5f8 -ARG PLEX_SHA=1ca3e97d72c7a2c9f1b7babb3adbc533380a28df +ARG PLEX_VER=1.18.5.2309-f5213a238 +ARG PLEX_SHA=83b6084f2aab5e74340296e529dabc39b6a93e54 ARG XMLSTAR_VER=1.6.1 ARG CURL_VER=curl-7_66_0 ARG ZLIB_VER=1.2.11 @@ -26,7 +26,7 @@ RUN curl -fsSL -o plexmediaserver.deb https://downloads.plex.tv/plex-media-serve && dpkg-deb -x plexmediaserver.deb . \ \ && rm -r \ - etc/ lib/ usr/sbin/ usr/share/ \ + etc/ usr/sbin/ usr/share/ \ plexmediaserver.deb \ \ && cd usr/lib/plexmediaserver \ @@ -37,6 +37,7 @@ RUN curl -fsSL -o plexmediaserver.deb https://downloads.plex.tv/plex-media-serve lib/libxml2.so* \ lib/libxslt.so* \ lib/libexslt.so* \ + lib/plexmediaserver.* \ Resources/start.sh \ # Place shared libraries in usr/lib so they can be actually shared && mv lib/*.so* lib/dri ../ \