debian-stretch-titan: use dpkg to install libfftranscode

For some magic reason, apt segfaults while installing the DEBs:

  $ apt install ./libfftranscode0_0.3_${DPKG_ARCH}.deb \
                ./libfftranscode-dev_0.3_${DPKG_ARCH}.deb
  WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
  Reading package lists...
  Segmentation fault (core dumped)

so it kind of confirms the warning about its stability ;)

Change-Id: I7f3288161577b055145afe89de7dff50853760f5
This commit is contained in:
Vadim Yanitskiy 2020-12-10 01:07:29 +01:00 committed by daniel
parent 233d37ee88
commit e1e8d3c592
1 changed files with 2 additions and 1 deletions

View File

@ -44,5 +44,6 @@ RUN apt-get update && \
RUN DPKG_ARCH="$(dpkg --print-architecture)" && export $DPKG_ARCH && \
wget https://ftp.osmocom.org/binaries/libfftranscode/libfftranscode0_0.3_${DPKG_ARCH}.deb && \
wget https://ftp.osmocom.org/binaries/libfftranscode/libfftranscode-dev_0.3_${DPKG_ARCH}.deb && \
apt install ./libfftranscode0_0.3_${DPKG_ARCH}.deb ./libfftranscode-dev_0.3_${DPKG_ARCH}.deb && \
dpkg -i ./libfftranscode0_0.3_${DPKG_ARCH}.deb ./libfftranscode-dev_0.3_${DPKG_ARCH}.deb && \
apt install --fix-broken && \
rm libfftranscode*.deb