35 lines
No EOL
692 B
Docker
35 lines
No EOL
692 B
Docker
# Build stage
|
|
FROM node:18-alpine AS builder
|
|
|
|
# Install git (needed by some npm postinstall scripts)
|
|
RUN apk add --no-cache git
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy package files
|
|
COPY package*.json ./
|
|
|
|
# Install dependencies
|
|
RUN npm install
|
|
|
|
# Copy source files
|
|
COPY . .
|
|
|
|
# Build the Vite production bundle
|
|
ENV NODE_ENV=production
|
|
RUN npm run build
|
|
|
|
# Production stage - tiny static server
|
|
FROM nginx:alpine
|
|
|
|
# Copy custom config (removes default, sets SPA fallback)
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# Copy built assets
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
|
|
|
# Expose port (Coolify expects 80 by default)
|
|
EXPOSE 80
|
|
|
|
# Start nginx in foreground
|
|
CMD ["nginx", "-g", "daemon off;"] |