From 199a1bc681fa949a416477737d2d151ac85043ef Mon Sep 17 00:00:00 2001 From: Vince Grassia <593223+vgrassia@users.noreply.github.com> Date: Wed, 19 Mar 2025 13:07:22 -0400 Subject: [PATCH] Change NVM version --- bitwarden_license/src/Sso/Dockerfile | 2 +- src/Admin/Dockerfile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bitwarden_license/src/Sso/Dockerfile b/bitwarden_license/src/Sso/Dockerfile index f72823bb10..9de0519605 100644 --- a/bitwarden_license/src/Sso/Dockerfile +++ b/bitwarden_license/src/Sso/Dockerfile @@ -26,7 +26,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ # Set up Node RUN mkdir -p $NVM_DIR -RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash \ +RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.2/install.sh | bash \ && . $NVM_DIR/nvm.sh \ && nvm install $NODE_VERSION \ && nvm alias default $NODE_VERSION \ diff --git a/src/Admin/Dockerfile b/src/Admin/Dockerfile index f419452549..68a147b7cc 100644 --- a/src/Admin/Dockerfile +++ b/src/Admin/Dockerfile @@ -5,6 +5,8 @@ FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0 AS build # Docker buildx supplies the value for this arg ARG TARGETPLATFORM +ENV NODE_VERSION=16.20.2 +ENV NVM_DIR=/usr/local/nvm # Determine proper runtime value for .NET # We put the value in a file to be read by later layers. @@ -24,10 +26,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && rm -rf /var/lib/apt/lists/* # Set up Node -ARG NODE_VERSION=16.20.2 -ENV NVM_DIR=/usr/local/nvm RUN mkdir -p $NVM_DIR -RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash \ +RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.2/install.sh | bash \ && . $NVM_DIR/nvm.sh \ && nvm install $NODE_VERSION \ && nvm alias default $NODE_VERSION \