docker env first draft

This commit is contained in:
2020-12-11 10:32:20 +01:00
commit 97df594616
24 changed files with 866 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/sh
# cat /etc/passwd|grep 1000
cd /app
echo "Cleaning node_modules"
rm -rf node_modules
echo "Cleaning npm cache"
npm cache clean --f
echo "Npm install"
npm install
echo "Run npm dev"
npm run dev