From 6432092210a3c5205aa0d8b395309ae6fa48f659 Mon Sep 17 00:00:00 2001 From: Evan H // KC2IHX Date: Mon, 15 Dec 2025 05:54:12 -0800 Subject: [PATCH] doot doot dooo - fixing my bad rebase --- rigctld/Containerfile | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 rigctld/Containerfile diff --git a/rigctld/Containerfile b/rigctld/Containerfile new file mode 100644 index 0000000..bb54088 --- /dev/null +++ b/rigctld/Containerfile @@ -0,0 +1,38 @@ +# build rigctld + +FROM debian:latest + +RUN mkdir src +# this might be too much, but let's try it +RUN apt update +RUN apt install -y libconfig-dev autoconf libtool git gcc g++ make cmake libudev-dev libreadline-dev libusb-1.0-0-dev libavahi-common-dev libavahi-client-dev + +# build hamlib/rigctld +FROM debian:latest AS farpn-base +# ENV DEBIAN_FRONTEND="noninteractive" TZ="Etc/UTC" + +# this might be too much, but let's try it +RUN apt update +RUN apt update \ + && apt install -y build-essential libconfig-dev autoconf \ + libtool git gcc g++ make cmake libudev-dev libusb-1.0-0-dev \ + libavahi-common-dev libavahi-client-dev + + +# build hamlib/rigctld +FROM farpn-base AS rigctld-builder + +RUN <