62 lines
1.8 KiB
Docker
62 lines
1.8 KiB
Docker
FROM oven/bun AS base
|
|
|
|
# Step 1. Rebuild the source code only when needed
|
|
FROM base AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
# Install dependencies based on the preferred package manager
|
|
COPY package.json bun.lock ./
|
|
RUN bun i --frozen-lockfile
|
|
|
|
COPY src ./src
|
|
COPY public ./public
|
|
COPY next.config.js .
|
|
COPY tsconfig.json .
|
|
|
|
# Environment variables must be present at build time
|
|
# https://github.com/vercel/next.js/discussions/14030
|
|
ARG ENV_VARIABLE
|
|
ENV ENV_VARIABLE=${ENV_VARIABLE}
|
|
ARG NEXT_PUBLIC_ENV_VARIABLE
|
|
ENV NEXT_PUBLIC_ENV_VARIABLE=${NEXT_PUBLIC_ENV_VARIABLE}
|
|
|
|
# Next.js collects completely anonymous telemetry data about general usage. Learn more here: https://nextjs.org/telemetry
|
|
# Uncomment the following line to disable telemetry at build time
|
|
# ENV NEXT_TELEMETRY_DISABLED 1
|
|
|
|
# Build Next.js based on the preferred package manager
|
|
RUN bun run build
|
|
|
|
# Note: It is not necessary to add an intermediate step that does a full copy of `node_modules` here
|
|
|
|
# Step 2. Production image, copy all the files and run next
|
|
FROM base AS runner
|
|
|
|
WORKDIR /app
|
|
|
|
# Don't run production as root
|
|
RUN addgroup --system --gid 1001 nodejs
|
|
RUN adduser --system --uid 1001 nextjs
|
|
USER nextjs
|
|
|
|
COPY --from=builder /app/public ./public
|
|
|
|
# Automatically leverage output traces to reduce image size
|
|
# https://nextjs.org/docs/advanced-features/output-file-tracing
|
|
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
|
|
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
|
|
|
|
# Environment variables must be redefined at run time
|
|
ARG ENV_VARIABLE
|
|
ENV ENV_VARIABLE=${ENV_VARIABLE}
|
|
ARG NEXT_PUBLIC_ENV_VARIABLE
|
|
ENV NEXT_PUBLIC_ENV_VARIABLE=${NEXT_PUBLIC_ENV_VARIABLE}
|
|
|
|
# Uncomment the following line to disable telemetry at run time
|
|
# ENV NEXT_TELEMETRY_DISABLED 1
|
|
|
|
# Note: Don't expose ports here, Compose will handle that for us
|
|
|
|
CMD ["node", "server.js"]
|