From 6030396f107af4021b3a0823a8cf4da712f040fe Mon Sep 17 00:00:00 2001 From: Bart Ribbers Date: Thu, 28 Mar 2024 08:28:57 +0100 Subject: [PATCH] fix(docker): correct git clone command for retrieving mopidy-spotify --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d17424c1b..12c7b6b91 100644 --- a/Dockerfile +++ b/Dockerfile @@ -130,8 +130,7 @@ RUN git clone --depth 1 --single-branch -b ${IRIS_VERSION} https://github.com/ja # Install Mopidy Spotify ARG MOPIDY_SPOTIFY_TAG=v5.0.0a1 -RUN git clone --depth 1 --single-branch -b ${MOPIDY_SPOTIFY_TAG} \ - && https://github.com/mopidy/mopidy-spotify.git mopidy-spotify \ +RUN git clone --depth 1 --single-branch -b ${MOPIDY_SPOTIFY_TAG} https://github.com/mopidy/mopidy-spotify.git mopidy-spotify \ && cd mopidy-spotify \ && python3 setup.py install \ && cd .. \