Next.js
Create App
yarn create next-app --typescript
Directory Structure
기본으로 생성되는 구조는 아래와 같습니다.
email/
<package>
├── next-env.d.ts
├── next.config.js
├── package.json
├── postcss.config.js
├── public/
│ ├── next.svg
│ └── vercel.svg
├── README.md
├── src/
│ └── app/
│ ├── favicon.ico
│ ├── globals.css
│ ├── layout.tsx
│ └── page.tsx
├── tailwind.config.ts
├── tsconfig.json
└── yarn.lock
Dockerfile
- https://nextjs.org/docs/advanced-features/output-file-tracing
- https://github.com/vercel/next.js/tree/canary/examples/with-docker
이미지 최적화를 사용하는 경우 sharp
를 종속성으로 추가해야 합니다.
yarn add sharp
next.config.js
module.exports = {
output: "standalone",
};
FROM node:16-alpine AS deps
RUN apk add --no-cache libc6-compat
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile
FROM node:16-alpine AS builder
WORKDIR /app
COPY /app/node_modules ./node_modules
COPY . .
ENV NEXT_TELEMETRY_DISABLED 1
RUN yarn build
FROM node:16-alpine AS runner
WORKDIR /app
ARG NODE_ENV=production
ENV NODE_ENV=${NODE_ENV}
ENV NEXT_TELEMETRY_DISABLED 1
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
# You only need to copy next.config.js if you are NOT using the default configuration
# COPY --from=builder /app/next.config.js ./
COPY /app/public ./public
COPY /app/package.json ./package.json
# Automatically leverage output traces to reduce image size
# https://nextjs.org/docs/advanced-features/output-file-tracing
COPY /app/.next/standalone ./
COPY /app/.next/static ./.next/static
# RUN ln -s /config/.env .env
USER nextjs
EXPOSE 3000
ENV PORT 3000
CMD ["node", "server.js"]
info
.env
파일을 인식하기 때문에 환경 변수 대신 볼륨 마운트를 사용하여 환경 변수를 전달해야 합니다.