From cdfc8d64a1861b29932f6f56917eba21cafe8925 Mon Sep 17 00:00:00 2001 From: Fred Clausen <43556888+fredclausen@users.noreply.github.com> Date: Fri, 13 Sep 2024 16:51:46 -0600 Subject: [PATCH] Update Dockerfile --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3435779..d8dc4ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,10 +67,6 @@ RUN set -x && \ make && \ make install && \ popd && popd && \ - # install sdrplay - curl --location --output /tmp/install_sdrplay.sh https://raw.githubusercontent.com/sdr-enthusiasts/install-libsdrplay/main/install_sdrplay.sh && \ - chmod +x /tmp/install_sdrplay.sh && \ - /tmp/install_sdrplay.sh && \ # build libairspy git clone https://github.com/airspy/airspyhf.git /src/airspyhf && \ pushd /src/airspyhf && \ @@ -102,6 +98,10 @@ RUN set -x && \ make install && \ popd && popd && \ ldconfig && \ + # install sdrplay + curl --location --output /tmp/install_sdrplay.sh https://raw.githubusercontent.com/sdr-enthusiasts/install-libsdrplay/main/install_sdrplay.sh && \ + chmod +x /tmp/install_sdrplay.sh && \ + /tmp/install_sdrplay.sh && \ git clone https://github.com/ericek111/SoapyMiri.git /src/SoapyMiri && \ pushd /src/SoapyMiri && \ mkdir build && \