Skip to content

Commit

Permalink
bugfix: --call has to be the last parameter for waitress in docker en…
Browse files Browse the repository at this point in the history
…trypoint;
  • Loading branch information
hannesrichter committed Aug 26, 2023
1 parent 6b45fa1 commit ef6b00e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ RUN python -m pip install --upgrade pip
RUN pip install --find-links=/wheels koi_api
RUN pip install waitress

ENTRYPOINT [ "waitress-serve", "--port=8080", "--call", "koi_api:create_app", "--max-request-body-size=8589934592" ]
ENTRYPOINT [ "waitress-serve", "--port=8080", "--max-request-body-size=8589934592", "--call", "koi_api:create_app" ]

0 comments on commit ef6b00e

Please sign in to comment.