From fd7afc2ae3168036a9a0629bb6ef1f476c1aee2f Mon Sep 17 00:00:00 2001 From: Steven Honson Date: Fri, 23 Sep 2022 17:13:57 +1000 Subject: [PATCH] Build spyserver_client earlier --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4dd8867..ca1f6ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,6 +39,11 @@ RUN git clone https://github.com/steve-m/librtlsdr.git /root/librtlsdr && \ make install && \ rm -rf /root/librtlsdr +# Compile spyserver_client from source. +RUN git clone https://github.com/miweber67/spyserver_client.git /root/spyserver_client && \ + cd /root/spyserver_client && \ + make + # Copy in radiosonde_auto_rx. COPY . /root/radiosonde_auto_rx @@ -46,11 +51,6 @@ COPY . /root/radiosonde_auto_rx WORKDIR /root/radiosonde_auto_rx/auto_rx RUN /bin/sh build.sh -# Compile spyserver_client from source. -RUN git clone https://github.com/miweber67/spyserver_client.git /root/spyserver_client && \ - cd /root/spyserver_client && \ - make - # ------------------------- # The application container # -------------------------