Files
wx_pyq/Dockerfile
jeremygan2021 5826f5ff86
Some checks failed
Deploy Docker Image / build-and-deploy (push) Has been cancelled
new
2026-02-27 17:16:44 +08:00

26 lines
469 B
Docker

# Build Stage
FROM node:18-alpine as builder
WORKDIR /app
RUN npm config set registry https://registry.npmmirror.com
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
# Production Stage
FROM nginx:alpine
# Copy built assets from builder stage
COPY --from=builder /app/dist /usr/share/nginx/html
# Copy custom nginx config if needed (using default for now)
# COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]