8 lines
169 B
Bash
Executable File
8 lines
169 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
PORT=${FRONTEND_PORT:-2080} node /app/frontend/build/index.js &
|
|
PROXY_PORT=${PROXY_PORT:-3456} node /app/proxy/dist/index.js &
|
|
|
|
nginx -g 'daemon off;'
|