client-entrypoint.sh 161 B

12345678910111213
  1. #!/bin/sh
  2. # cat /etc/passwd|grep 1000
  3. cd /app
  4. echo "Cleaning node_modules"
  5. rm -rf node_modules
  6. echo "Npm install"
  7. npm install
  8. echo "Run npm dev"
  9. npm run dev