mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
45 lines
1.3 KiB
Docker
45 lines
1.3 KiB
Docker
ARG NOTION_PAGE_ID
|
||
ARG NEXT_PUBLIC_THEME
|
||
|
||
FROM node:18-alpine3.18 AS base
|
||
|
||
# 1. Install dependencies only when needed
|
||
FROM base AS deps
|
||
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
|
||
RUN apk add --no-cache libc6-compat
|
||
WORKDIR /app
|
||
COPY package.json ./
|
||
RUN yarn install --frozen-lockfile
|
||
|
||
# 2. Rebuild the source code only when needed
|
||
FROM base AS builder
|
||
ARG NOTION_PAGE_ID
|
||
WORKDIR /app
|
||
COPY --from=deps /app/node_modules ./node_modules
|
||
COPY . .
|
||
RUN yarn build
|
||
|
||
# 3. Production image, copy all the files and run next
|
||
FROM base AS runner
|
||
WORKDIR /app
|
||
|
||
ENV NODE_ENV=production
|
||
|
||
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 /app/.next/standalone ./
|
||
COPY --from=builder /app/.next/static ./.next/static
|
||
|
||
# 个人仓库把将配置好的.env.local文件放到项目根目录,可自动使用环境变量
|
||
# COPY --from=builder /app/.env.local ./
|
||
|
||
EXPOSE 3000
|
||
|
||
# Next.js collects completely anonymous telemetry data about general usage.
|
||
# Learn more here: https://nextjs.org/telemetry
|
||
# Uncomment the following line in case you want to disable telemetry.
|
||
# ENV NEXT_TELEMETRY_DISABLED 1
|
||
|
||
CMD ["node", "server.js"] |