From 7ad6fcd4d0a68e39bb257148b7225a6118dc3d29 Mon Sep 17 00:00:00 2001 From: Kevin Whitaker Date: Sat, 3 Jan 2026 14:13:18 -0500 Subject: [PATCH] move nvm outside of root --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d0a104c..e1ebe0c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,7 +39,7 @@ RUN wget https://github.com/rommapp/romm/archive/refs/tags/$VERSION.tar.gz && \ tar xfz $VERSION.tar.gz --strip-components=1 -C /app/code && rm $VERSION.tar.gz # Install nvm -ENV NVM_DIR="/root/.nvm" +ENV NVM_DIR="/app/code/.nvm" RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash \ && . "$NVM_DIR/nvm.sh" \ && nvm install 18.20.8 \