Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
HitomaruKonpaku committed Jun 24, 2024
1 parent 9349298 commit 9467b19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ COPY package*.json ./
# DEPENDENCIES
FROM base AS dependencies

RUN npm install --omit=dev
RUN npm install --no-progress --omit=dev

# BUILDER
FROM base AS builder

RUN npm install -g @nestjs/cli
RUN npm install
RUN npm install --no-progress -g @nestjs/cli
RUN npm install --no-progress

COPY . .

Expand Down

0 comments on commit 9467b19

Please sign in to comment.