mirror of
https://github.com/multipleof4/KalBot.git
synced 2026-03-16 21:41:02 +00:00
44 lines
1.1 KiB
Docker
44 lines
1.1 KiB
Docker
# Stage 1: Fast dependencies using Bun
|
|
FROM oven/bun:alpine AS deps
|
|
WORKDIR /app
|
|
COPY package.json package-lock.json* ./
|
|
RUN bun install
|
|
|
|
# Stage 2: Fast builds using Bun
|
|
FROM oven/bun:alpine AS builder
|
|
WORKDIR /app
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
COPY . .
|
|
RUN bun run build
|
|
|
|
# Stage 3: Stable production runtime using Node.js
|
|
FROM node:22-alpine AS runner
|
|
WORKDIR /app
|
|
|
|
ENV NODE_ENV=production
|
|
ENV PORT=3004
|
|
|
|
RUN apk add --no-cache libc6-compat
|
|
RUN addgroup --system --gid 1001 nodejs
|
|
RUN adduser --system --uid 1001 nextjs
|
|
|
|
COPY --from=builder /app/public ./public
|
|
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
|
|
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
|
|
|
|
# Copy worker + lib files
|
|
COPY --from=builder --chown=nextjs:nodejs /app/worker.js ./
|
|
COPY --from=builder --chown=nextjs:nodejs /app/lib ./lib
|
|
COPY --from=builder --chown=nextjs:nodejs /app/entrypoint.sh ./
|
|
|
|
# Install ws for worker (not bundled by Next.js standalone)
|
|
RUN npm install ws surrealdb
|
|
|
|
RUN chmod +x entrypoint.sh
|
|
|
|
USER nextjs
|
|
|
|
EXPOSE 3004
|
|
|
|
CMD ["./entrypoint.sh"]
|