From a278df4235cc20654a8b7ba26f48d815671e90bd Mon Sep 17 00:00:00 2001 From: mbfannan <122257080+mbfannan@users.noreply.github.com> Date: Sun, 12 Nov 2023 14:59:47 +0300 Subject: [PATCH] Update Dockerfile to port 5000 Signed-off-by: mbfannan <122257080+mbfannan@users.noreply.github.com> --- node_modules/career-model/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node_modules/career-model/Dockerfile b/node_modules/career-model/Dockerfile index 0a6f9a61..8fb5d3b0 100644 --- a/node_modules/career-model/Dockerfile +++ b/node_modules/career-model/Dockerfile @@ -13,7 +13,7 @@ RUN pip install gunicorn COPY . /app # Use 8000 port -EXPOSE 8000 +EXPOSE 5000 # Use gunicorn to run the app -CMD ["gunicorn", "-b", "0.0.0.0:8000", "main:app"] +CMD ["gunicorn", "-b", "0.0.0.0:5000", "main:app"]