36 lines
1.1 KiB
Docker
36 lines
1.1 KiB
Docker
|
|
# =============================================================================
|
||
|
|
# Build stage
|
||
|
|
# =============================================================================
|
||
|
|
FROM node:20-alpine AS builder
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
# Copy package files
|
||
|
|
COPY package.json pnpm-lock.yaml ./
|
||
|
|
|
||
|
|
# Install dependencies (using pnpm since lock file is pnpm-lock.yaml)
|
||
|
|
RUN npm install -g pnpm && pnpm install --frozen-lockfile
|
||
|
|
|
||
|
|
# Copy source code
|
||
|
|
COPY . .
|
||
|
|
|
||
|
|
# Build the application
|
||
|
|
RUN pnpm run build
|
||
|
|
|
||
|
|
# =============================================================================
|
||
|
|
# Production stage
|
||
|
|
# =============================================================================
|
||
|
|
FROM nginx:alpine AS production
|
||
|
|
|
||
|
|
# Copy custom nginx config for SPA routing
|
||
|
|
COPY --from=builder /app/nginx.conf /etc/nginx/conf.d/default.conf
|
||
|
|
|
||
|
|
# Copy built assets from builder
|
||
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
||
|
|
|
||
|
|
# Expose port 80
|
||
|
|
EXPOSE 80
|
||
|
|
|
||
|
|
# Health check for nginx
|
||
|
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
|
||
|
|
CMD wget --no-redirect --quiet --tries=1 --spider http://localhost/ || exit 1
|