Files
wx_pyq/Dockerfile
jeremygan2021 99218d9035
Some checks failed
Deploy to Aliyun ACR / build-and-push (push) Has been cancelled
first commit
2026-02-27 17:01:55 +08:00

24 lines
409 B
Docker

# Build Stage
FROM node:18-alpine as builder
WORKDIR /app
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;"]