mirror of https://github.com/bastienwirtz/homer
freeze-lockfile option on yarn
parent
d10b219db5
commit
e6596ca6ee
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue