diff --git a/build-with-docker/Containerfile.spotifyd.ubuntu-impish b/build-with-docker/Containerfile.spotifyd.ubuntu-impish index b85d463..5ac30c3 100644 --- a/build-with-docker/Containerfile.spotifyd.ubuntu-impish +++ b/build-with-docker/Containerfile.spotifyd.ubuntu-impish @@ -10,7 +10,8 @@ RUN set -ex;\ apt -y install \ git rustc cargo libasound2-dev libssl-dev pkg-config \ portaudio19-dev libdbus-1-dev libpulse-dev libogg-dev; \ - git clone https://github.com/Spotifyd/spotifyd.git; \ + git clone -b zeroconf_cache_fix https://github.com/eladyn/spotifyd.git; \ + echo git clone https://github.com/Spotifyd/spotifyd.git; \ cd spotifyd; \ cargo build $FEATURES --release; \ cargo install $FEATURES --path . --locked; \ diff --git a/build-with-docker/podman-build.sh b/build-with-docker/podman-build.sh index 89756bd..ece64c8 100755 --- a/build-with-docker/podman-build.sh +++ b/build-with-docker/podman-build.sh @@ -20,7 +20,7 @@ podman build --pull -t owntone \ -v $CWD/var/cache/dnf:/var/cache/dnf:z \ -v $CWD/opt/owntone:/opt/owntone:z \ -v $CWD/.cargo:/root/.cargo:z \ - -f Containerfile.nymphcast.fedora34; + -f Containerfile.spotifyd.ubuntu-impish; tar cvfz owntone.tar.gz ./opt/ # rm -rf ./opt