client-entrypoint.sh 159 B

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