# syntax=docker/dockerfile:1.7 # --- deps ------------------------------------------------------------------ FROM node:20-alpine AS deps WORKDIR /app RUN apk add --no-cache openssl libc6-compat COPY package.json package-lock.json* ./ RUN --mount=type=cache,target=/root/.npm \ if [ -f package-lock.json ]; then npm ci; else npm install; fi # --- build ----------------------------------------------------------------- FROM node:20-alpine AS builder WORKDIR /app RUN apk add --no-cache openssl libc6-compat COPY --from=deps /app/node_modules ./node_modules COPY . . ENV NEXT_TELEMETRY_DISABLED=1 RUN npx prisma generate RUN npm run build # --- runner ---------------------------------------------------------------- FROM node:20-alpine AS runner WORKDIR /app RUN apk add --no-cache openssl libc6-compat tini ENV NODE_ENV=production \ NEXT_TELEMETRY_DISABLED=1 \ PORT=3000 \ HOSTNAME=0.0.0.0 \ DATABASE_URL="file:/data/app.db" \ UPLOAD_DIR="/data/uploads" RUN addgroup -S -g 1001 nodejs && adduser -S -u 1001 -G nodejs nextjs COPY --from=builder --chown=nextjs:nodejs /app/node_modules ./node_modules COPY --from=builder --chown=nextjs:nodejs /app/.next ./.next COPY --from=builder --chown=nextjs:nodejs /app/public ./public COPY --from=builder --chown=nextjs:nodejs /app/prisma ./prisma COPY --from=builder --chown=nextjs:nodejs /app/scripts ./scripts COPY --from=builder --chown=nextjs:nodejs /app/package.json ./package.json COPY --from=builder --chown=nextjs:nodejs /app/next.config.ts ./next.config.ts COPY --from=builder --chown=nextjs:nodejs /app/tsconfig.json ./tsconfig.json COPY docker/entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh RUN mkdir -p /data/uploads /data/backups && chown -R nextjs:nodejs /data USER nextjs VOLUME ["/data"] EXPOSE 3000 HEALTHCHECK --interval=30s --timeout=5s --start-period=30s --retries=3 \ CMD wget -qO- http://127.0.0.1:3000/api/health || exit 1 ENTRYPOINT ["/sbin/tini", "--", "/entrypoint.sh"] CMD ["npm", "run", "start"]