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
COPY . .
# Expose port 80
EXPOSE 80
# Expose port 5000
EXPOSE 5000
# Start
ENV PORT=80
ENV PORT=5000
CMD ["yarn", "start"]