This commit is contained in:
Mackie 2026-06-08 07:20:27 +08:00
parent de3a1b6384
commit c3966ad11b

View file

@ -10,5 +10,6 @@ RUN pnpm run build
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
# ... previous steps
EXPOSE 3000
CMD ["nginx", "-g", "daemon off;"]