#!/bin/sh echo 'Starting gunicorn...' exec gunicorn --workers 3 \ --log-file /app/logs/gunicorn.log \ --bind 0.0.0.0:5002 \ app:app \ "$@"