Skip to content

Commit

Permalink
freeze-lockfile option on yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinbui committed Jun 11, 2020
1 parent d10b219 commit e6596ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM node:lts-alpine as build-stage
WORKDIR /app

COPY package*.json ./
RUN yarn install
RUN yarn install --frozen-lockfile

COPY . .
RUN yarn build
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.arm32v7
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM node:lts-alpine as build-stage
WORKDIR /app

COPY package*.json ./
RUN yarn install
RUN yarn install --frozen-lockfile

COPY . .
RUN yarn build
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.arm64v8
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM node:lts-alpine as build-stage
WORKDIR /app

COPY package*.json ./
RUN yarn install
RUN yarn install --frozen-lockfile

COPY . .
RUN yarn build
Expand Down

0 comments on commit e6596ca

Please sign in to comment.