From e12c9340e14c650a30b46898bb456c1ca99208cc Mon Sep 17 00:00:00 2001 From: Valeriy Svydenko Date: Tue, 26 Sep 2023 12:19:33 +0300 Subject: [PATCH] Update Dockerfile for OS ci Signed-off-by: Valeriy Svydenko --- .ci/openshift-ci/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci/openshift-ci/Dockerfile b/.ci/openshift-ci/Dockerfile index 6dd9078241..385177ff4c 100644 --- a/.ci/openshift-ci/Dockerfile +++ b/.ci/openshift-ci/Dockerfile @@ -10,15 +10,13 @@ # Contributors: # Red Hat, Inc. - initial API and implementation -# Dockerfile to bootstrap build and test in openshift-ci - # Dockerfile to bootstrap build and test in openshift-ci FROM registry.access.redhat.com/ubi9/nodejs-18:1 # hadolint ignore=DL3002 USER 0 # hadolint ignore=DL3041 -RUN dnf install -y -q --allowerasing --nobest nodejs-devel nodejs-libs \ +RUN dnf install -y -q --allowerasing --nobest nodejs-devel nodejs-libs psmisc python3-pip jq golang httpd-tools \ # already installed or installed as deps: openssl openssl-devel ca-certificates make cmake cpp gcc gcc-c++ zlib zlib-devel brotli brotli-devel python3 nodejs-packaging && \ dnf update -y && dnf clean all && \ @@ -33,3 +31,5 @@ RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s bash <(curl -sL https://www.eclipse.org/che/chectl/) --channel=next && \ curl https://mirror.openshift.com/pub/openshift-v4/clients/oc/4.6/linux/oc.tar.gz | tar xvzf - -C /usr/local/bin/ oc && \ chmod ug+x /usr/local/bin/oc + +SHELL ["/bin/bash", "-c"]