# Build stage FROM node:20-alpine AS builder WORKDIR /app # Install dependencies COPY package*.json ./ RUN npm ci # Copy source files COPY . . # Generate database migrations RUN npx drizzle-kit generate # Build the application RUN npm run build # Production stage FROM node:20-alpine AS runner WORKDIR /app ENV NODE_ENV=production ENV DATABASE_PATH=/app/data/readlater.db # Create non-root user RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nextjs # Copy built application COPY --from=builder /app/public ./public COPY --from=builder /app/.next/standalone ./ COPY --from=builder /app/.next/static ./.next/static COPY --from=builder /app/drizzle ./drizzle COPY --from=builder /app/node_modules/drizzle-orm ./node_modules/drizzle-orm COPY --from=builder /app/node_modules/better-sqlite3 ./node_modules/better-sqlite3 # Create data directory RUN mkdir -p /app/data && chown -R nextjs:nodejs /app/data USER nextjs EXPOSE 3000 ENV PORT=3000 ENV HOSTNAME="0.0.0.0" CMD ["node", "server.js"]