added node container for webpack build

This commit is contained in:
2020-11-03 11:23:49 +01:00
parent dce19c42fe
commit c5757c47e2
6 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/sh
# cat /etc/passwd|grep 1000
cd /app
echo "Cleaning node_modules"
rm -rf node_modules
echo "Npm install"
npm install
echo "Run npm dev"
npm run dev