From a04faaf36d8ada24bae3eef5c2b478362876168d Mon Sep 17 00:00:00 2001 From: bonzofenix <317403+bonzofenix@users.noreply.github.com> Date: Tue, 11 Jun 2024 13:19:51 +0200 Subject: [PATCH] Add netcat to dockerfile to use bosh scp bosh scp needs the `nc` binary in order to run. This is provided in the netcat package --- ci/dockerfiles/autoscaler-tools/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/dockerfiles/autoscaler-tools/Dockerfile b/ci/dockerfiles/autoscaler-tools/Dockerfile index 6eac2e2f77..ed4ec976a8 100644 --- a/ci/dockerfiles/autoscaler-tools/Dockerfile +++ b/ci/dockerfiles/autoscaler-tools/Dockerfile @@ -36,6 +36,7 @@ RUN apt-get update && \ cf8-cli \ gnupg \ gnupg2 \ + netcat \ gh \ make \ mysql-client && \