Skip to content

Commit

Permalink
fix base image to alpine
Browse files Browse the repository at this point in the history
  • Loading branch information
idoyo7 committed Dec 16, 2024
1 parent 2b1e193 commit 43e51d7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
# Node.js 최신 LTS 버전인 18 버전을 사용합니다.
FROM node:18
# Node.js 최신 LTS 버전의 가벼운 Alpine 이미지를 사용합니다.
FROM node:18-alpine

# 작업 디렉토리를 설정합니다.
WORKDIR /app

# 빌드 필수 도구 설치 (필요시)
RUN apk add --no-cache python3 make g++

# HonKit을 글로벌로 설치합니다.
RUN npm install -g honkit

# 현재 디렉토리의 내용을 컨테이너로 복사합니다.
COPY . /app
COPY . .

# 포트 설정
EXPOSE 4000
Expand Down

0 comments on commit 43e51d7

Please sign in to comment.