Skip to content

Commit

Permalink
fix(#151): dockerfile modify
Browse files Browse the repository at this point in the history
  • Loading branch information
mjh000526 committed Dec 3, 2024
1 parent d417b2e commit 2ddc964
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 @@ -2,15 +2,16 @@ FROM docker:20.10.7-dind

RUN apk add --no-cache nodejs npm

RUN npm install -g pnpm

WORKDIR /app

COPY package*.json ./
RUN npm install -g pnpm

COPY . .

RUN pnpm install

COPY . .

RUN pnpm lint --filter=backend && pnpm turbo run build --filter=backend

WORKDIR /app/apps/backend
Expand Down

0 comments on commit 2ddc964

Please sign in to comment.