fix: resolve k8s deployment issues with init containers and updated helm deps

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-11 11:02:16 -05:00
parent f1115497c4
commit c105312178
11 changed files with 60 additions and 32 deletions

View File

@@ -1,31 +1,31 @@
FROM node:20-alpine AS deps
FROM oven/bun:latest AS deps
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY package.json bun.lock* ./
RUN bun install --frozen-lockfile 2>/dev/null || bun install
FROM node:20-alpine AS builder
FROM oven/bun:latest AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
ENV NEXT_TELEMETRY_DISABLED 1
RUN npm run build
FROM node:20-alpine AS runner
# Ensure public folder exists for the build
RUN mkdir -p public
ENV NEXT_TELEMETRY_DISABLED=1
RUN bun run build
FROM oven/bun:latest AS runner
WORKDIR /app
ENV NODE_ENV production
ENV NEXT_TELEMETRY_DISABLED 1
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
ENV NODE_ENV=production
ENV NEXT_TELEMETRY_DISABLED=1
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
USER nextjs
COPY --from=builder /app/.next/standalone ./
COPY --from=builder /app/.next/static ./.next/static
EXPOSE 3000
ENV PORT 3000
ENV PORT=3000
ENV HOSTNAME="0.0.0.0"
CMD ["node", "server.js"]
CMD ["bun", "server.js"]