# syntax=docker/dockerfile:1 FROM oven/bun:alpine AS base # Builder stage FROM base AS builder RUN apk add --no-cache libc6-compat WORKDIR /app # Copy source code (node_modules excluded via .dockerignore) COPY . . # Install all dependencies RUN bun install # Build with proper environment ENV NEXT_TELEMETRY_DISABLED=1 ENV NODE_ENV=production RUN bun run build --filter=@gib/next # Runner stage FROM node:20-alpine AS runner WORKDIR /app ENV NODE_ENV=production ENV NEXT_TELEMETRY_DISABLED=1 RUN addgroup --system --gid 1001 nodejs && \ adduser --system --uid 1001 nextjs # Copy built application COPY --from=builder --chown=nextjs:nodejs /app/apps/next/.next/standalone ./ COPY --from=builder --chown=nextjs:nodejs /app/apps/next/.next/static ./apps/next/.next/static COPY --from=builder --chown=nextjs:nodejs /app/apps/next/public ./apps/next/public USER nextjs EXPOSE 3000 ENV PORT=3000 ENV HOSTNAME="0.0.0.0" CMD ["node", "apps/next/server.js"]