chore: listen on all ips on port 80

This commit is contained in:
Julia 2021-06-06 19:57:51 +02:00
parent 782e0f7b97
commit d59b224ea9
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 80", "src.main:app"]