heissepreise/docker/main.sh
2023-05-15 13:53:34 +02:00

11 lines
140 B
Bash
Executable File

#!/bin/bash
set -e
npm install
if [ -z "$DEV" ]; then
echo "RUNNING STUFF 2"
node index.js
else
echo "RUNNING STUFF"
npm run dev
fi