From 4e4e034db2f9b22791d8a394a8691a64cad6d550 Mon Sep 17 00:00:00 2001 From: Dome Date: Fri, 28 Mar 2025 14:40:47 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4e7e204..16400a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,9 @@ COPY package.json yarn.lock ./ RUN yarn install --frozen-lockfile COPY . . -# Expose port 80 -EXPOSE 80 +# Expose port 5000 +EXPOSE 5000 # Start -ENV PORT=80 +ENV PORT=5000 CMD ["yarn", "start"]