From 8e6cd8ce0fa706bbcf7ec40f2e96c619f67ea599 Mon Sep 17 00:00:00 2001 From: Dmytro Nochevnov Date: Fri, 19 Jan 2024 13:02:25 +0200 Subject: [PATCH] Fix syntax error in Dockerfile of OpenShift Ci jobs Signed-off-by: Dmytro Nochevnov --- .ci/openshift-ci/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/openshift-ci/Dockerfile b/.ci/openshift-ci/Dockerfile index 51294a9c90..602797dbc5 100644 --- a/.ci/openshift-ci/Dockerfile +++ b/.ci/openshift-ci/Dockerfile @@ -15,6 +15,8 @@ FROM registry.ci.openshift.org/openshift/release:golang-1.18 # hadolint ignore=DL3002 USER 0 +SHELL ["/bin/bash", "-c"] + # Install yq, kubectl, chectl cli used by olm/olm.sh script. # hadolint ignore=DL3041 # Install yq, kubectl, chectl cli. @@ -25,5 +27,3 @@ RUN yum install --assumeyes -d1 psmisc python3-pip httpd-tools nodejs && \ chmod +x ./kubectl && \ mv ./kubectl /usr/local/bin && \ bash <(curl -sL https://www.eclipse.org/che/chectl/) --channel=next - -SHELL ["/bin/bash", "-c"]