From a4569401f7706b409ebca2727ae644ce6d1300ea Mon Sep 17 00:00:00 2001 From: Kegan Maher Date: Wed, 10 Aug 2022 18:10:05 -0700 Subject: [PATCH] fix(app): serve from port 8000 nginx listens for the container on this port --- eligibility_server/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eligibility_server/app.py b/eligibility_server/app.py index bc973a57..89d6c8bc 100644 --- a/eligibility_server/app.py +++ b/eligibility_server/app.py @@ -57,4 +57,4 @@ def __repr__(self): if __name__ == "__main__": - app.run(host=app.config["HOST"], debug=app.config["DEBUG_MODE"]) # nosec + app.run(host=app.config["HOST"], debug=app.config["DEBUG_MODE"], port="8000") # nosec