diff --git a/Dockerfile b/Dockerfile index c44c504..5ca3456 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ WORKDIR /src COPY . . # NPM Build at PGK_JSON_PATH -RUN npm install --prefix "${CSPROJ_PATH}wwwroot" +RUN npm install --prefix "${CSPROJ_PATH}wwwroot" --loglevel verbose # ============================ # Prepare Building Environment diff --git a/install.sh b/install.sh index e97b07f..b35e161 100644 --- a/install.sh +++ b/install.sh @@ -31,7 +31,7 @@ install() wwwrootPath=$(dirname "/tmp/repo/$proj_path")/wwwroot if [ -d "$wwwrootPath" ]; then echo "Found wwwroot folder $wwwrootPath, will install node modules." - sudo npm install --prefix "$wwwrootPath" -force + sudo npm install --prefix "$wwwrootPath" -force --loglevel verbose fi # Publish the app