From 692f58232605b9e2458c5f9c259a12e938263907 Mon Sep 17 00:00:00 2001 From: illuminatus Date: Thu, 17 Oct 2024 15:32:06 -0700 Subject: [PATCH] Add socat (#1831) ## Description Add socat to the later tool dependencies installation step. ## Motivation and context cncli.sh metrics serve requires socat, but cncli.sh deploy expects to install it w/o doing an update for apt metadata and to setup systemd services. ## Which issue it fixes? Closes #1830 --- files/docker/node/dockerfile_bin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/docker/node/dockerfile_bin b/files/docker/node/dockerfile_bin index 7e00c06b7..16a3fe00d 100644 --- a/files/docker/node/dockerfile_bin +++ b/files/docker/node/dockerfile_bin @@ -64,7 +64,7 @@ RUN set -x && export SUDO='N' \ # Add final tools in a separate layer to shrink the largest layer RUN apt-get update \ - && apt-get install -y procps libcap2 libselinux1 libc6 libsodium-dev ncurses-bin iproute2 xz-utils netbase coreutils dnsutils net-tools procps tcptraceroute bc usbip sqlite3 python3 tmux ncurses-base libtool autoconf tcptraceroute util-linux less openssl bsdmainutils dialog vim \ + && apt-get install -y procps libcap2 libselinux1 libc6 libsodium-dev ncurses-bin iproute2 xz-utils netbase coreutils dnsutils net-tools procps tcptraceroute bc usbip sqlite3 python3 tmux ncurses-base libtool autoconf tcptraceroute util-linux less openssl bsdmainutils dialog vim socat \ && apt-get -y purge \ && apt-get -y clean \ && apt-get -y autoremove \