python3 -m venv .env
. .env/bin/activate
pip install -U pip setuptools wheel
pip install -r requirements.txt./server.pycurl localhost:7777docker build -t hello-sanic:0.0.1 .docker run -dt --name hs -p 7777:7777 hello-sanic:0.0.1curl localhost:7777