mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 23:16:49 +00:00
30 lines
843 B
Docker
30 lines
843 B
Docker
ARG NOTION_PAGE_ID
|
|
ARG NEXT_PUBLIC_THEME
|
|
|
|
# Install dependencies only when needed
|
|
FROM node:18-alpine3.18 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
|
|
|
|
# Rebuild the source code only when needed
|
|
FROM node:18-alpine3.18 AS builder
|
|
ARG NOTION_PAGE_ID
|
|
WORKDIR /app
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
COPY . .
|
|
RUN yarn build
|
|
|
|
ENV NODE_ENV production
|
|
|
|
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 ["yarn", "start"]
|