Skip to content

Commit

Permalink
Updated dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad-ignatov committed Feb 13, 2025
1 parent b2a1e64 commit 5a087aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 5a087aa

Please sign in to comment.