From 2717d063f8c85bf8e7659c5268951779e2325c76 Mon Sep 17 00:00:00 2001 From: Antoine Cardon Date: Fri, 5 Apr 2019 00:26:23 +0200 Subject: [PATCH] Add dependency to enable sound in Spotify (#460) Spotify crashes if run with pulseaudio server configuration, I fixed it by adding libpulse0 to the dependencies. --- spotify/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/spotify/Dockerfile b/spotify/Dockerfile index 82392e1..4edb738 100644 --- a/spotify/Dockerfile +++ b/spotify/Dockerfile @@ -23,6 +23,7 @@ RUN apt-get update && apt-get install -y \ alsa-utils \ libgl1-mesa-dri \ libgl1-mesa-glx \ + libpulse0 \ spotify-client \ xdg-utils \ --no-install-recommends \