68 lines
2 KiB
Docker
68 lines
2 KiB
Docker
# =============================================================================
|
|
# GoHorse Jobs Frontend - Optimized Production Dockerfile
|
|
# =============================================================================
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Stage 1: Dependencies
|
|
# -----------------------------------------------------------------------------
|
|
FROM mirror.gcr.io/library/node:20-alpine AS deps
|
|
|
|
WORKDIR /app
|
|
|
|
# Install dependencies only when needed
|
|
COPY package.json package-lock.json* ./
|
|
RUN npm ci --only=production --ignore-scripts && \
|
|
npm cache clean --force
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Stage 2: Builder
|
|
# -----------------------------------------------------------------------------
|
|
FROM mirror.gcr.io/library/node:20-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy dependencies from deps stage
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
COPY . .
|
|
|
|
# Build arguments for environment
|
|
ARG NEXT_PUBLIC_API_URL
|
|
ENV NEXT_PUBLIC_API_URL=$NEXT_PUBLIC_API_URL
|
|
|
|
# Build the application
|
|
ENV NEXT_TELEMETRY_DISABLED=1
|
|
RUN npm run build
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Stage 3: Production Runner
|
|
# -----------------------------------------------------------------------------
|
|
FROM mirror.gcr.io/library/node:20-alpine AS runner
|
|
|
|
WORKDIR /app
|
|
|
|
# Security: Run as non-root user
|
|
RUN addgroup -g 1001 -S nodejs && \
|
|
adduser -u 1001 -S nextjs -G nodejs
|
|
|
|
# Set production environment
|
|
ENV NODE_ENV=production \
|
|
NEXT_TELEMETRY_DISABLED=1 \
|
|
PORT=3000
|
|
|
|
# Copy only necessary files for production
|
|
COPY --from=builder /app/public ./public
|
|
COPY --from=builder /app/.next/standalone ./
|
|
COPY --from=builder /app/.next/static ./.next/static
|
|
|
|
# Set ownership to non-root user
|
|
RUN chown -R nextjs:nodejs /app
|
|
|
|
USER nextjs
|
|
|
|
EXPOSE 3000
|
|
|
|
# Health check
|
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 \
|
|
CMD wget -qO- http://localhost:3000 || exit 1
|
|
|
|
CMD ["node", "server.js"]
|