Skip to content

Commit

Permalink
switch to port 80 to see if it makes a difference
Browse files Browse the repository at this point in the history
  • Loading branch information
azuur committed Feb 6, 2024
1 parent 057acbd commit 7e4823d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ RUN apt-get update && apt-get install -y curl
COPY --from=build /dist/*.whl /package/.
RUN pip install *.whl

EXPOSE 8000
EXPOSE 80

USER python
2 changes: 1 addition & 1 deletion ml_pipelines/deployment/aws/serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def main(
load_data=False,
)

uvicorn_kwargs: dict = {}
uvicorn_kwargs: dict = {"port": 80}
run_serve( # noqa: PLR0913
train_version=train_version,
get_train_artifacts_func=get_train_artifacts_func,
Expand Down

0 comments on commit 7e4823d

Please sign in to comment.