13 lines
205 B
Bash
13 lines
205 B
Bash
#! /bin/sh
|
|
|
|
if [ "$1" = "sh" ] || [ "$1" = "bash" ]; then
|
|
exec $@
|
|
|
|
elif [ -z "$1" ] || [ "$@" = "run" ]; then
|
|
gunicorn --bind 0.0.0.0:${PORT:-8000} --preload --access-logfile - morss
|
|
|
|
else
|
|
morss $@
|
|
|
|
fi
|