From 3b938738b5d23d901d0085dddcc9f9e4575d5389 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Teresa=20Gonz=C3=A1lez?= <144899619+uo288347@users.noreply.github.com> Date: Sat, 9 Mar 2024 20:57:25 +0100 Subject: [PATCH] Hotfix: Update Dockerfile --- questions/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/questions/Dockerfile b/questions/Dockerfile index b6761292..1d3e0ae2 100644 --- a/questions/Dockerfile +++ b/questions/Dockerfile @@ -13,5 +13,8 @@ RUN npm install # Copy the app source code to the working directory COPY . . +# Expose the port the app runs on +EXPOSE 8010 + # Define the command to run your app -CMD ["node", "index.js"] \ No newline at end of file +CMD ["node", "index.js"]