Skip to content

Commit

Permalink
dockerfile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-hak committed Jul 1, 2024
1 parent f1b3455 commit ddc78f9
Showing 1 changed file with 10 additions and 45 deletions.
55 changes: 10 additions & 45 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,56 +1,21 @@
# Multi-stage build

# 1단계: 환경 설정 및 dependancy 설치
FROM node:20-alpine AS deps
RUN apk add --no-cache libc6-compat

# 명령어를 실행할 디렉터리 지정
WORKDIR /app

# Dependancy install을 위해 package.json, package-lock.json, yarn.lock 복사
COPY package.json yarn.lock ./

# Dependancy 설치 (새로운 lock 파일 수정 또는 생성 방지)
RUN yarn --frozen-lockfile

###########################################################
#
# 2단계: next.js 빌드 단계
# Step 1: Build the Vite app
FROM node:20-alpine AS builder

# 명령어를 실행할 디렉터리 지정
WORKDIR /app

# node_modules 등의 dependancy를 복사함.
COPY --from=deps /app/node_modules ./node_modules
COPY . .
COPY package.json yarn.lock ./
RUN yarn install

COPY . .
RUN yarn build

###########################################################

# 3단계: next.js 실행 단계
FROM node:20-alpine AS runner

# 명령어를 실행할 디렉터리 지정
WORKDIR /app

# container 환경에 시스템 사용자를 추가함
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
# Step 2: Serve the Vite app with Nginx
FROM nginx:alpine

# next.config.js에서 output을 standalone으로 설정하면
# 빌드에 필요한 최소한의 파일만 ./next/standalone로 출력이 된다.
# standalone 결과물에는 public 폴더와 static 폴더 내용은 포함되지 않으므로, 따로 복사를 해준다.
COPY --from=builder /app/public ./public
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
COPY --from=builder /app/dist /usr/share/nginx/html

# 컨테이너의 수신 대기 포트를 3000으로 설정
EXPOSE 3000
COPY nginx.conf /etc/nginx/nginx.conf

# node로 애플리케이션 실행
CMD ["node", "server.js"]
EXPOSE 80

# standalone으로 나온 결과값은 node 자체적으로만 실행 가능
# CMD ["npm", "start"]
CMD ["nginx", "-g", "daemon off;"]

0 comments on commit ddc78f9

Please sign in to comment.