remove version filter for dependencys

This commit is contained in:
MReenen 2022-03-16 12:58:42 +01:00
parent 1309896878
commit dcbef74d2d

View File

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