diff --git a/docker/Dockerfile b/docker/Dockerfile index 7ef839f..5106c51 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -103,6 +103,7 @@ RUN apt-get update -qq && \ pulseaudio-module-zeroconf \ pulsemixer \ python3 \ + python3-pip \ ranger \ redshift \ ruby \ @@ -296,6 +297,14 @@ RUN git clone --depth 1 https://github.com/LazyVim/starter ~/.config/nvim && \ tar xf lazygit.tar.gz lazygit && \ install lazygit /usr/local/bin +# Install mopidy +RUN mkdir -p /etc/apt/keyrings && \ + wget -q -O /etc/apt/keyrings/mopidy-archive-keyring.gpg https://apt.mopidy.com/mopidy.gpg && \ + wget -q -O /etc/apt/sources.list.d/mopidy.list https://apt.mopidy.com/bullseye.list && \ + apt-get update -qq && \ + apt-get install -qq mopidy && \ + pip3 install Mopidy-Tidal --break-system-packages + # Install nodejs RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -