Skip to content
Snippets Groups Projects
Commit a26fe8b0 authored by trantzas's avatar trantzas
Browse files

Fix for Remove root user enforcement in deploy.sh script (#43)

parent 238db7b3
No related branches found
No related tags found
No related merge requests found
Pipeline #12989 passed
...@@ -62,5 +62,5 @@ fi ...@@ -62,5 +62,5 @@ fi
echo "Installing npm packages..." echo "Installing npm packages..."
docker run -u 0 --rm -v "$PWD":/app trion/ng-cli:13.3.7 npm install docker run -u $(id -u) --rm -v "$PWD":/app trion/ng-cli:13.3.7 npm install
docker run -u 0 --rm -v "$PWD":/app trion/ng-cli:13.3.7 ng build --configuration production --deleteOutputPath=false docker run -u $(id -u) --rm -v "$PWD":/app trion/ng-cli:13.3.7 ng build --configuration production --deleteOutputPath=false
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment