Skip to content

Commit b26d2b8

Browse files
committed
fix: update application port to 80 in Dockerfile
1 parent d8545e6 commit b26d2b8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM node:24-alpine3.22
44
WORKDIR /app
55

66
# Set environment variables for the application
7-
ENV PORT=8080
7+
ENV PORT=80
88

99
# Copy package.json and Prisma schema files to the container
1010
COPY package*.json ./
@@ -19,6 +19,6 @@ COPY . .
1919
RUN npx prisma generate
2020

2121
# Expose the application port
22-
EXPOSE 8080
22+
EXPOSE 80
2323

2424
CMD ["npm", "start"]

0 commit comments

Comments
 (0)