Merge pull request #46 from jflesch/master

Update Sunshine to 0.20.0
This commit is contained in:
Josh Sunnex
2023-06-26 20:02:11 -07:00
committed by GitHub

View File

@@ -435,18 +435,19 @@ RUN \
echo
# Install sunshine
ARG SUNSHINE_VERSION=0.11.1
ARG SUNSHINE_VERSION=0.20.0
RUN \
echo "**** Fetch Sunshine deb package ****" \
&& cd /tmp \
&& wget -O /tmp/sunshine-debian.deb \
https://github.com/loki-47-6F-64/sunshine/releases/download/v${SUNSHINE_VERSION}/sunshine-debian.deb \
https://github.com/LizardByte/sunshine/releases/download/v${SUNSHINE_VERSION}/sunshine-debian-bullseye-amd64.deb \
&& \
echo "**** Update apt database ****" \
&& apt-get update \
&& \
echo "**** Install Sunshine ****" \
&& apt-get install -y /tmp/sunshine-debian.deb \
&& apt-get install -y libboost-chrono1.74.0 \
&& \
echo "**** Section cleanup ****" \
&& apt-get clean autoclean -y \