Merge pull request #2 from tarkah/remove-binaries

remove lazystream binary from repo, get from tagged release
This commit is contained in:
taylorbourne
2020-02-26 16:49:56 -08:00
committed by GitHub
2 changed files with 7 additions and 2 deletions

View File

@@ -39,7 +39,12 @@ RUN wget https://github.com/xteve-project/xTeVe-Downloads/raw/master/xteve_linux
ADD guide2go /usr/bin/guide2go ADD guide2go /usr/bin/guide2go
# Add lazystream # Add lazystream
ADD lazystream /usr/bin/lazystream RUN wget https://github.com/tarkah/lazystream/releases/download/v1.9.4/lazystream-v1.9.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; \
rm -rf lazystream/
ADD cronjob.sh / ADD cronjob.sh /
ADD entrypoint.sh / ADD entrypoint.sh /
ADD sample_cron.txt / ADD sample_cron.txt /
@@ -56,4 +61,4 @@ RUN chmod +x /usr/bin/guide2go
EXPOSE 34400 EXPOSE 34400
# Entrypoint # Entrypoint
ENTRYPOINT ["./entrypoint.sh"] ENTRYPOINT ["./entrypoint.sh"]

Binary file not shown.