From 7eec27a0b94636ea460ceda2ca60440614494fe1 Mon Sep 17 00:00:00 2001 From: Niall Thomson Date: Tue, 10 Oct 2023 23:03:07 +0000 Subject: [PATCH] Migrate to new nodes install steps --- test/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/Dockerfile b/test/Dockerfile index 1448b4d75..cb03a59fd 100644 --- a/test/Dockerfile +++ b/test/Dockerfile @@ -2,9 +2,8 @@ FROM eks-workshop-environment USER root -RUN curl -sL https://rpm.nodesource.com/setup_16.x | bash - && \ - yum install -y nodejs npm aws-cli procps && \ - yum clean all +RUN yum install https://rpm.nodesource.com/pub_16.x/nodistro/repo/nodesource-release-nodistro-1.noarch.rpm -y && \ + yum install nodejs -y --setopt=nodesource-nodejs.module_hotfixes=1 WORKDIR /app