Last active
August 24, 2024 09:50
-
-
Save SajidK25/e7475fad53600f1ae38bc6f199563055 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:20-alpine AS base | |
### Dependencies ### | |
FROM base AS deps | |
RUN apk add --no-cache libc6-compat git | |
# Setup pnpm environment | |
ENV PNPM_HOME="/pnpm" | |
ENV PATH="$PNPM_HOME:$PATH" | |
RUN corepack enable | |
RUN corepack prepare pnpm@latest --activate | |
WORKDIR /app | |
COPY package.json pnpm-lock.yaml ./ | |
RUN pnpm install --frozen-lockfile --prefer-frozen-lockfile | |
# Builder | |
FROM base AS builder | |
ENV NODE_ENV=production | |
ENV GENERATE_SOURCEMAP=false | |
ENV NODE_OPTIONS="--max-old-space-size=8192" | |
ENV NEXT_TELEMETRY_DISABLED=1 | |
RUN corepack enable | |
RUN corepack prepare pnpm@latest --activate | |
RUN npm i @iconify/tools | |
WORKDIR /app | |
COPY --from=deps /app/node_modules ./node_modules | |
COPY . . | |
RUN pnpm build | |
### Production image runner ### | |
FROM base AS runner | |
ENV NEXT_TELEMETRY_DISABLED 1 | |
# Set correct permissions for nextjs user and don't run as root | |
RUN addgroup nodejs | |
RUN adduser -SDH nextjs | |
RUN mkdir .next | |
RUN chown nextjs:nodejs .next | |
# 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 | |
COPY --from=builder --chown=nextjs:nodejs /app/public ./public | |
USER nextjs | |
# Exposed port (for orchestrators and dynamic reverse proxies) | |
EXPOSE 3000 | |
ENV PORT 3000 | |
ENV HOSTNAME "0.0.0.0" | |
HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 CMD [ "wget", "-q0", "http://localhost:3000/health" ] | |
# Run the nextjs app | |
CMD ["node", "server.js"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment