Skip to content

Commit

Permalink
Merge pull request #949 from PureTryOut/fix/docker-clone-spotify-repo
Browse files Browse the repository at this point in the history
fix(docker): correct git clone command for retrieving mopidy-spotify
  • Loading branch information
jaedb authored Oct 28, 2024
2 parents 18c55ae + 6030396 commit a8c54ba
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .. \
Expand Down

0 comments on commit a8c54ba

Please sign in to comment.