From 50fd4c5e3807ebb1e58a896ca6291df1f0b4f24a Mon Sep 17 00:00:00 2001 From: Jackson Delahunt Date: Sun, 27 Aug 2023 17:18:37 +1000 Subject: [PATCH] mopidy --- docker/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) 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 -