Fix listen address in Dockerfile

This commit is contained in:
Stéphane Bidoul 2021-11-11 17:12:42 +01:00
parent d8fff09ed1
commit 96372d8e50
No known key found for this signature in database
GPG key ID: BCAB2555446B5B92

View file

@ -30,4 +30,4 @@ ENV KUBECONFIG=/run/kubeconfig
EXPOSE 8000
CMD [ "gunicorn", "-w", "1", "-k", "runboat.uvicorn.RunboatUvicornWorker", "runboat.app:app"]
CMD [ "gunicorn", "-w", "1", "--bind", ":8000", "-k", "runboat.uvicorn.RunboatUvicornWorker", "runboat.app:app"]