chore: listen on all ips on port 8080

This commit is contained in:
Julia 2021-06-06 20:07:07 +02:00
parent 782e0f7b97
commit 1786881376
Signed by: julia
GPG Key ID: 6A0C04FA9A7D7582

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 RUN pip install --no-cache-dir -r requirements.txt
COPY ./src ./src COPY ./src ./src
CMD ["/usr/local/bin/uvicorn", "src.main:app"] CMD ["/usr/local/bin/uvicorn", "--host", "'::'", "--port", "8080", "src.main:app"]