From 8ce66d0ffcfa9061d34760efb25a5932746f854d Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Tue, 7 Jun 2022 16:42:15 +0200 Subject: [PATCH] fix(build): frontend build command Signed-off-by: rjshrjndrn --- frontend/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/build.sh b/frontend/build.sh index 575d99e9e..de30e5ff2 100644 --- a/frontend/build.sh +++ b/frontend/build.sh @@ -20,7 +20,7 @@ check_prereq() { function build(){ cp .env.sample .env # Run docker as the same user, else we'll run in to permission issues. - docker run --rm -v /etc/passwd:/etc/passwd -u `id -u`:`id -g` -v $(pwd):/home/${USER} -w /home/${USER} --name node_build node:14-stretch-slim /bin/bash -c "npm install && npm run build:oss" + docker run --rm -v /etc/passwd:/etc/passwd -u `id -u`:`id -g` -v $(pwd):/home/${USER} -w /home/${USER} --name node_build node:14-stretch-slim /bin/bash -c "npm install && npm run build" echo "frotend build completed" }