10 lines
147 B
Bash
10 lines
147 B
Bash
#!/bin/sh
|
|
|
|
# Start NGINX in background
|
|
nginx -g "daemon off;" &
|
|
|
|
# Start Node.js backend
|
|
node src/backend/server.cjs
|
|
|
|
# Keep container running
|
|
wait |