Update Dockerfile

This commit is contained in:
Dome
2025-03-28 14:40:47 +01:00
committed by GitHub
parent b8047a7988
commit 4e4e034db2
+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 80 # Expose port 5000
EXPOSE 80 EXPOSE 5000
# Start # Start
ENV PORT=80 ENV PORT=5000
CMD ["yarn", "start"] CMD ["yarn", "start"]