Compare commits

..

1 Commits

Author SHA1 Message Date
1786881376
chore: listen on all ips on port 8080 2021-06-06 20:07:07 +02:00

View File

@ -7,4 +7,4 @@ RUN apk add --no-cache build-base openldap-dev python2-dev python3-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"]