From 066f05d3876d06349edd4bc8b256c88f16ed0749 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Mon, 20 Oct 2025 01:31:23 -0400 Subject: [PATCH] Copy the small files after the installs --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 13fec13..7c93155 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,14 +19,14 @@ WORKDIR /op25 RUN sed -i 's/sudo //g' install.sh RUN ./install.sh -f -# Install the op25.liq file -COPY op25.liq /op25/op25/gr-op25_repeater/apps/op25.liq -RUN chmod +x /op25/op25/gr-op25_repeater/apps/op25.liq - # Install Python dependencies COPY requirements.txt /tmp/requirements.txt RUN pip3 install --no-cache-dir -r /tmp/requirements.txt +# Install the op25.liq file +COPY op25.liq /op25/op25/gr-op25_repeater/apps/op25.liq +RUN chmod +x /op25/op25/gr-op25_repeater/apps/op25.liq + # Create the run_multi-rx_service.sh script COPY run_multi-rx_service.sh /op25/op25/gr-op25_repeater/apps/run_multi-rx_service.sh RUN chmod +x /op25/op25/gr-op25_repeater/apps/run_multi-rx_service.sh