添加dockerfile

This commit is contained in:
2026-07-23 15:54:39 +08:00
parent 63b4959b6b
commit 5fb131ff90
4 changed files with 56 additions and 0 deletions

23
Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
FROM node:24-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
FROM node:24-alpine AS runtime
RUN apk add --no-cache nginx
COPY --from=build /app/dist /usr/share/nginx/html
COPY --from=build /app/server /app/server
COPY docker/nginx.conf /etc/nginx/http.d/default.conf
ENV INQUIRY_API_PORT=5174
EXPOSE 80
CMD ["sh", "-c", "node /app/server/cms-server.mjs & exec nginx -g 'daemon off;'"]