From 464c246a7847c7e75e0bb8634b14bba718076d78 Mon Sep 17 00:00:00 2001 From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Mon, 11 Sep 2023 17:44:00 +0100 Subject: [PATCH] in the docker build process, skip the make install for nqptp and take the binary of nqptp from where it is built --- docker/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 1dc34141..da8688ed 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -46,7 +46,6 @@ RUN git checkout "$NQPTP_BRANCH" RUN autoreconf -i RUN ./configure RUN make -RUN make install WORKDIR / ##### NQPTP END ##### @@ -97,7 +96,7 @@ RUN apk -U add \ # Copy build files. COPY --from=builder /shairport-sync/build/install/usr/local/bin/shairport-sync /usr/local/bin/shairport-sync COPY --from=builder /shairport-sync/build/install/usr/local/share/man/man7 /usr/share/man/man7 -COPY --from=builder /usr/local/bin/nqptp /usr/local/bin/nqptp +COPY --from=builder /nqptp/nqptp /usr/local/bin/nqptp COPY --from=builder /usr/local/lib/libalac.* /usr/local/lib/ COPY --from=builder /shairport-sync/build/install/etc/shairport-sync.conf /etc/ COPY --from=builder /shairport-sync/build/install/etc/shairport-sync.conf.sample /etc/ -- 2.47.2