diff --git a/mopidy/Dockerfile b/mopidy/Dockerfile index a5c50a9..b2e2ae5 100755 --- a/mopidy/Dockerfile +++ b/mopidy/Dockerfile @@ -13,11 +13,11 @@ RUN \ apt-get update \ \ && apt-get install -y --no-install-recommends \ - dirmngr=2.2.12-1+deb10u1 \ - gpg-agent=2.2.12-1+deb10u1 \ - gpg=2.2.12-1+deb10u1 \ - nginx=1.14.2-2+deb10u4 \ - git=1:2.20.1-2+deb10u3 \ + dirmngr \ + gpg-agent \ + gpg \ + nginx \ + git \ \ && curl -L https://apt.mopidy.com/mopidy.gpg | apt-key add - \ && curl -L https://apt.mopidy.com/mopidy.list -o /etc/apt/sources.list.d/mopidy.list \ @@ -25,22 +25,22 @@ RUN \ && apt-get update \ \ && apt-get install -y --no-install-recommends \ - libffi-dev=3.2.1-9 \ - libxml2-dev=2.9.4+dfsg1-7+deb10u2 \ - libxslt1-dev=1.1.32-2.2~deb10u1 \ - libasound2-dev=1.1.8-1 \ - libspotify12=12.1.51-1 \ - libspotify-dev=12.1.51-1 \ - zlib1g-dev=1:1.2.11.dfsg-1 \ - build-essential=12.6 \ - python3-dev=3.7.3-1 \ - python3-gi=3.30.4-1 \ - python3-gst-1.0=1.14.4-1+b1 \ - gstreamer1.0-alsa=1.14.4-2+deb10u1 \ - gstreamer1.0-plugins-bad=1.14.4-1+deb10u2 \ - gstreamer1.0-plugins-good=1.14.4-1+deb10u1 \ - gstreamer1.0-plugins-ugly=1.14.4-1+deb10u1 \ - gstreamer1.0-pulseaudio=1.14.4-1+deb10u1 \ + libffi-dev \ + libxml2-dev \ + libxslt1-dev \ + libasound2-dev \ + libspotify12 \ + libspotify-dev \ + zlib1g-dev \ + build-essential \ + python3-dev \ + python3-gi \ + python3-gst-1.0 \ + gstreamer1.0-alsa \ + gstreamer1.0-plugins-bad \ + gstreamer1.0-plugins-good \ + gstreamer1.0-plugins-ugly \ + gstreamer1.0-pulseaudio \ \ && curl https://bootstrap.pypa.io/get-pip.py | python3 \ && pip3 install --no-cache-dir -r /tmp/requirements.txt \