From 3bbaa1cc96ac7509e9224ddf3e8670cd953d45aa Mon Sep 17 00:00:00 2001 From: Julia Luna Date: Sun, 6 Jun 2021 20:23:40 +0200 Subject: [PATCH] chore: fix dumb command parsing --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5173528..a8a90ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,4 +7,4 @@ RUN apk add --no-cache build-base openldap-dev python2-dev python3-dev musl-dev RUN pip install --no-cache-dir -r requirements.txt COPY ./src ./src -CMD ["/usr/local/bin/uvicorn", "--host", "'::'", "--port", "8080", "src.main:app"] +CMD ["/usr/local/bin/uvicorn", "--host", "::", "--port", "8080", "src.main:app"]