From 46a6ea21988771c9a4d46f9183ea28f3beb05e4f Mon Sep 17 00:00:00 2001 From: Cedric Date: Tue, 9 Apr 2024 11:15:06 +0100 Subject: [PATCH] [fix] Install jq when building plugins image (#12750) --- plugins/chainlink.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/chainlink.Dockerfile b/plugins/chainlink.Dockerfile index a7e9706435c..9c7f71183f0 100644 --- a/plugins/chainlink.Dockerfile +++ b/plugins/chainlink.Dockerfile @@ -14,6 +14,8 @@ ARG COMMIT_SHA COPY . . +RUN apt-get update && apt-get install -y jq + # Build the golang binaries RUN make install-chainlink