Skip to content

Commit

Permalink
no frozen-lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
upiksaleh committed Oct 1, 2024
1 parent c41c235 commit 2e11c98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ COPY package.json .
RUN corepack enable && corepack prepare

COPY pnpm-lock.yaml .
RUN pnpm install --frozen-lockfile --prod
RUN pnpm install --prod

FROM node:18.18.0-alpine AS builder
WORKDIR /app
Expand All @@ -15,7 +15,7 @@ COPY package.json .
RUN corepack enable && corepack prepare

COPY pnpm-lock.yaml .
RUN pnpm install --frozen-lockfile
RUN pnpm install

COPY . .
RUN pnpm build
Expand Down

0 comments on commit 2e11c98

Please sign in to comment.