From 71477a6460a6b39ec632e5aecbf7df373328de4d Mon Sep 17 00:00:00 2001 From: Garret Hicks Date: Sat, 8 Aug 2020 13:51:26 -0700 Subject: [PATCH] Update version of lazystream (#16) Updating version in order to bring in this update https://github.com/tarkah/lazystream/pull/45 which keeps the streams in a consistent order. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 909caa3..5eec113 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone RUN wget https://github.com/xteve-project/xTeVe-Downloads/raw/master/xteve_linux_amd64.zip -O temp.zip; unzip temp.zip -d /usr/bin/; rm temp.zip # Add lazystream -RUN wget https://github.com/tarkah/lazystream/releases/download/v1.10.3/lazystream-v1.10.3-x86_64-unknown-linux-musl.tar.gz -O lazystream.tar.gz; \ +RUN wget https://github.com/tarkah/lazystream/releases/download/v1.10.4/lazystream-v1.10.4-x86_64-unknown-linux-musl.tar.gz -O lazystream.tar.gz; \ tar xzf lazystream.tar.gz; \ mv lazystream/lazystream /usr/bin/lazystream; \ rm lazystream.tar.gz; \ @@ -85,4 +85,4 @@ ENV PUID=1000 \ # Expose Port EXPOSE ${XTEVE_PORT} -ENTRYPOINT [ "/init" ] \ No newline at end of file +ENTRYPOINT [ "/init" ]