From 27d207a5a7170f428af29f040091bc0ba23b0106 Mon Sep 17 00:00:00 2001 From: Shoaib Akhtar <140428769+STAR-173@users.noreply.github.com> Date: Sat, 9 Mar 2024 19:58:35 +0530 Subject: [PATCH] Fixed Exposed ports in Dockerfile (#352) Co-authored-by: Star --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c7a9be9..49c42aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ WORKDIR /usr/src/app RUN npm install # expose server port -EXPOSE 3000-5001 +EXPOSE 5000 # launch application CMD ["npm","start"]