From 5a087aad0f5f15039eccf19a4e85c86f9fee5fc7 Mon Sep 17 00:00:00 2001 From: Vladimir Ignatov Date: Thu, 13 Feb 2025 12:40:13 -0500 Subject: [PATCH] Updated dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 451d9d4..a540db6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build the application -FROM node:18 AS build +FROM node:23 AS build # Set the working directory WORKDIR /app @@ -33,8 +33,8 @@ COPY --from=build /app/src/isomorphic ./src/isomorphic COPY --from=build /app/build ./build # Set environment variables -ENV NODE_ENV "production" -ENV PORT "80" +ENV NODE_ENV="production" +ENV PORT="80" # Expose the port EXPOSE 80