File size: 178 Bytes
939b06a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

cd /app/project

npm install

npm run build

# Start initial server
npx serve -s build -l 7860 &

# Start cron
cron

# Keep container alive
tail -f /var/log/cron.log