Update Dockerfile

This commit is contained in:
Dome
2025-03-28 14:34:21 +01:00
committed by GitHub
parent ef85f6782d
commit b8047a7988
+3 -3
View File
@@ -5,9 +5,9 @@ COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile RUN yarn install --frozen-lockfile
COPY . . COPY . .
# Expose port 5000 # Expose port 80
EXPOSE 5000 EXPOSE 80
# Start # Start
ENV PORT=5000 ENV PORT=80
CMD ["yarn", "start"] CMD ["yarn", "start"]