From 03c811d34bcf6e3f1088508b43743608c52b6822 Mon Sep 17 00:00:00 2001 From: Jure Ursic Date: Wed, 21 Jun 2023 21:42:23 +0200 Subject: [PATCH] fix: nvm --- .kube/app/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.kube/app/Dockerfile b/.kube/app/Dockerfile index 0947d2b16..599ad8fc8 100644 --- a/.kube/app/Dockerfile +++ b/.kube/app/Dockerfile @@ -66,7 +66,7 @@ COPY . $APP_DIR RUN composer install -RUN npm ci +RUN . "$NVM_DIR/nvm.sh" && nvm use $NODE_VERSION && npm ci RUN chown www-data:root $APP_DIR/public/ -R