From a2e65d73bd6e5a0a5f188cc6f8019771039f9e04 Mon Sep 17 00:00:00 2001 From: Shinnosuke Sawada Date: Mon, 1 Jul 2024 10:50:38 +0900 Subject: [PATCH] Install jq in piped-base images (#5009) Signed-off-by: Shinnosuke Sawada Signed-off-by: khanhtc1202 --- tool/piped-base-okd/Dockerfile | 1 + tool/piped-base/Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/tool/piped-base-okd/Dockerfile b/tool/piped-base-okd/Dockerfile index 6e45f8ab85..2f40117827 100644 --- a/tool/piped-base-okd/Dockerfile +++ b/tool/piped-base-okd/Dockerfile @@ -16,6 +16,7 @@ RUN \ libc-dev \ musl-nscd-dev \ make \ + jq \ cmake && \ # Install glibc to be used for building nss_wrapper. diff --git a/tool/piped-base/Dockerfile b/tool/piped-base/Dockerfile index 3f7318c916..a6b4e3ae75 100644 --- a/tool/piped-base/Dockerfile +++ b/tool/piped-base/Dockerfile @@ -16,6 +16,7 @@ RUN \ ca-certificates \ git \ openssh \ + jq \ curl && \ update-ca-certificates && \ mkdir -p ${PIPED_TOOLS_DIR} && \