-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update Dockerfile to build and test in OS-CI
Signed-off-by: Valeriy Svydenko <[email protected]>
- Loading branch information
Showing
1 changed file
with
15 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright (c) 2021 Red Hat, Inc. | ||
# Copyright (c) 2023 Red Hat, Inc. | ||
# This program and the accompanying materials are made | ||
# available under the terms of the Eclipse Public License 2.0 | ||
# which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
|
@@ -12,15 +12,22 @@ | |
|
||
# Dockerfile to bootstrap build and test in openshift-ci | ||
|
||
FROM registry.ci.openshift.org/openshift/release:golang-1.13 | ||
# Dockerfile to bootstrap build and test in openshift-ci | ||
FROM registry.access.redhat.com/ubi9/nodejs-18:1 | ||
# hadolint ignore=DL3002 | ||
USER 0 | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
# hadolint ignore=DL3041 | ||
RUN dnf install -y -q --allowerasing --nobest nodejs-devel nodejs-libs \ | ||
# 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 && \ | ||
npm install -g [email protected] npm@9 && \ | ||
echo -n "node version: "; node -v; \ | ||
echo -n "npm version: "; npm -v; \ | ||
echo -n "yarn version: "; yarn -v; | ||
|
||
# Install yq, kubectl, chectl cli used by olm/olm.sh script. | ||
RUN yum install --assumeyes -d1 python3-pip httpd-tools && \ | ||
pip3 install --upgrade setuptools && \ | ||
pip3 install yq && \ | ||
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && \ | ||
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && \ | ||
chmod +x ./kubectl && \ | ||
mv ./kubectl /usr/local/bin && \ | ||
bash <(curl -sL https://www.eclipse.org/che/chectl/) --channel=next && \ | ||
|