From 154eef22d58ae035e597d289df4f17507e58ae4d Mon Sep 17 00:00:00 2001 From: Niall Thomson Date: Thu, 10 Oct 2024 08:58:05 -0600 Subject: [PATCH] Set alternatives to point to new version --- src/checkout/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/checkout/Dockerfile b/src/checkout/Dockerfile index aa5c6c902..11e1ac918 100644 --- a/src/checkout/Dockerfile +++ b/src/checkout/Dockerfile @@ -10,6 +10,9 @@ RUN dnf --setopt=install_weak_deps=False install -q -y \ && \ dnf clean all +RUN alternatives --install /usr/bin/node node /usr/bin/node-20 90 && \ + alternatives --install /usr/bin/npm npm /usr/bin/npm-20 90 + ENV APPUSER=appuser ENV APPUID=1000 ENV APPGID=1000