From 588306c0d16cb6d300a7806ed561fd6a57e2fe54 Mon Sep 17 00:00:00 2001 From: Yashvardhan Nanavati Date: Tue, 10 Dec 2024 22:56:37 -0800 Subject: [PATCH] fix(CVP-4331): install golang to bypass check-payload bug found a bug in check-payload where the binary doesn't work correctly if golang isn't installed during runtime. We can revert this commit once the bug is resolved Signed-off-by: Yashvardhan Nanavati --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1254847..c23f825 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,6 +39,8 @@ RUN rpm -Uvh epel-release-latest-9.noarch.rpm && \ clamd \ csdiff \ git \ + # Remove golang after https://github.com/openshift/check-payload/issues/231 is resolved + golang \ python3-file-magic \ python3-pip \ ShellCheck \