#!/bin/bash echo "nameserver 8.8.8.8" > /tmp/resolv.conf export RESOLV_CONF=/tmp/resolv.conf exec "$@" nginx -g 'daemon off;' & uvicorn app:app --host 0.0.0.0 --port 10000 --timeout-keep-alive 320