Skip to content

Commit

Permalink
[test] CI/CD 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
edder773 committed Nov 19, 2024
1 parent c5220a6 commit 59ef406
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ RUN npm install -g pnpm
# 최상위 폴더를 작업 디렉토리
WORKDIR /app

# 공통 package.json과 lock 파일을 복사 및 설치
COPY package*.json pnpm-lock.yaml ./
RUN pnpm install

# 프론트엔드 파일 복사 및 빌드
WORKDIR /app/apps/frontend
Expand All @@ -20,6 +17,10 @@ RUN pnpm run build
WORKDIR /app/apps/backend
COPY apps/backend ./

# 공통 package.json과 lock 파일을 복사 및 설치
COPY package*.json pnpm-lock.yaml ./
RUN pnpm install

# 프론트엔드와 백엔드 포트 노출 설정
EXPOSE 3000 8080

Expand Down

0 comments on commit 59ef406

Please sign in to comment.