From 00266a89214f40adc26094ab7c7ad6dada8b54e6 Mon Sep 17 00:00:00 2001 From: Bart Ribbers Date: Wed, 13 Mar 2024 12:46:11 +0100 Subject: [PATCH] fix(docker): update mopidy-spotify to the latest release to adapt to Spotify API changes https://github.com/mopidy/mopidy-spotify/issues/375 --- Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b4fa4c5e7..93740ea2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN apt update \ WORKDIR /usr/src/gst-plugins-rs # Clone source of gst-plugins-rs to workdir -ARG GST_PLUGINS_RS_TAG=0.10.5 +ARG GST_PLUGINS_RS_TAG=0.12.2 RUN git clone -c advice.detachedHead=false \ --single-branch --depth 1 \ --branch ${GST_PLUGINS_RS_TAG} \ @@ -131,7 +131,11 @@ RUN git clone --depth 1 --single-branch -b ${IRIS_VERSION} https://github.com/ja # Install mopidy-spotify-gstspotify (Hack, not released yet!) # (https://github.com/kingosticks/mopidy-spotify/tree/gstspotifysrc-hack) -RUN git clone --depth 1 https://github.com/mopidy/mopidy-spotify.git mopidy-spotify \ +ARG MOPIDY_SPOTIFY_TAG=v5.0.0a1 +RUN git clone -c advice.detachedHead=false \ + --single-branch --depth 1 \ + --branch ${MOPIDY_SPOTIFY_TAG} \ + https://github.com/mopidy/mopidy-spotify.git mopidy-spotify \ && cd mopidy-spotify \ && python3 setup.py install \ && cd .. \