From 02177d160f0a67135d512d94b59b3861e1ba1b2f Mon Sep 17 00:00:00 2001 From: Cory Forsstrom Date: Sun, 26 Jul 2020 13:15:45 -0700 Subject: [PATCH] update lazystream for mlb bug (#15) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d0c458e..909caa3 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.9.8/lazystream-v1.9.8-x86_64-unknown-linux-musl.tar.gz -O lazystream.tar.gz; \ +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; \ tar xzf lazystream.tar.gz; \ mv lazystream/lazystream /usr/bin/lazystream; \ rm lazystream.tar.gz; \