Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for Tidal with mopidy-tidal #1901

Draft
wants to merge 13 commits into
base: future3/develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docker/jukebox.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ RUN apt-get update && apt-get install -qq -y \
COPY . ${INSTALLATION_PATH}

RUN pip3 install --no-cache-dir -r ${INSTALLATION_PATH}/requirements.txt

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this necessary, if the packages are mentioned in requirements.txt?

RUN pip3 install websocket

RUN pip3 install websocket-client

RUN pip3 install pyzmq

EXPOSE 5555 5556
Expand Down
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ requests
eyed3
# For the publisher event reactor loop:
tornado
# For the mopidy player
jsonrpcclient
websocket
websocket-client

# RPi's GPIO packages: these are installed via APT on the PI
# On regular machines, install them manually if needed for development
Expand Down
Loading