client-entrypoint.sh 160 B

1234567891011121314
  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