15 lines
199 B
Bash
15 lines
199 B
Bash
|
#!/bin/sh
|
||
|
gunicorn --bind 0.0.0.0:80 weblight:app
|
||
|
|
||
|
|
||
|
# if argument(s) given - execute argument(s) in container. Otherwise loop.
|
||
|
if [ "$#" -gt 0 ]; then
|
||
|
exec $@
|
||
|
else
|
||
|
while :;
|
||
|
do
|
||
|
sleep 1
|
||
|
done
|
||
|
fi
|
||
|
|