This commit is contained in:
2025-03-16 16:25:05 +08:00
parent a5754b3399
commit ac4fd8d006

View File

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