From b0f187ac7dcb4db14ec5cb537652f466787267b1 Mon Sep 17 00:00:00 2001 From: nhyatt Date: Mon, 26 Sep 2022 19:09:06 -0500 Subject: [PATCH] switches to apt-get --- build-k8s-lenz.jenkins | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-k8s-lenz.jenkins b/build-k8s-lenz.jenkins index 99cca0c..b37a965 100644 --- a/build-k8s-lenz.jenkins +++ b/build-k8s-lenz.jenkins @@ -127,13 +127,13 @@ pipeline { container (jsNodeID) { script { sh """ - apt update - apt install --no-install-recommends -y curl ca-certificates gcc g++ make git rpm + apt-get update + apt-get install --no-install-recommends -y curl ca-certificates gcc g++ make git rpm curl -fsSL https://deb.nodesource.com/setup_16.x | bash - curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /usr/share/keyrings/yarnkey.gpg > /dev/null echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | tee /etc/apt/sources.list.d/yarn.list - apt update - apt install yarn nodejs + apt-get update + apt-get install --no-install-recommends -y yarn nodejs cd "${workspace}/lens" make build """