From 535d8bcbe3b3bacb8ead16ed35588ae3d8e4a163 Mon Sep 17 00:00:00 2001 From: KoCoder Date: Sun, 17 May 2026 02:30:15 +0200 Subject: [PATCH] Fix: NVM_DIR Path --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 039f902..42422ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN sudo apt install curl golang-go delve git -y RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.2/install.sh | bash # set env -ENV NVM_DIR=/root/.nvm +ENV NVM_DIR="/home/coder/.nvm" # install node RUN bash -c "source $NVM_DIR/nvm.sh && nvm install --lts"