9 lines
143 B
Bash
9 lines
143 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "[entrypoint] Building TypeScript..."
|
|
npm run build
|
|
|
|
echo "[entrypoint] Starting web server..."
|
|
exec npm run start:prod
|