This commit is contained in:
philipcheung 2025-03-16 16:25:05 +08:00
parent a5754b3399
commit ac4fd8d006
1 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM node:20 AS build-stage FROM node:18-alpine
WORKDIR /app WORKDIR /app
@ -14,5 +14,4 @@ RUN npm run build
EXPOSE 3000 EXPOSE 3000
# Bind to all network interfaces, not just localhost CMD [ "serve", "-s", "dist", "-l", "3000" ]
CMD [ "serve", "-s", "dist", "-l", "tcp://0.0.0.0:3000" ]