8 lines
69 B
Bash
8 lines
69 B
Bash
#!/bin/sh
|
|
set -e
|
|
mkdir -p /app/data
|
|
cd /app
|
|
git pull
|
|
npm i
|
|
exec "$@"
|