]> git.immae.eu Git - github/bastienwirtz/homer.git/commitdiff
freeze-lockfile option on yarn 84/head
authorCalvin Bui <3604363+calvinbui@users.noreply.github.com>
Thu, 11 Jun 2020 01:42:56 +0000 (11:42 +1000)
committerCalvin Bui <3604363+calvinbui@users.noreply.github.com>
Thu, 11 Jun 2020 01:42:56 +0000 (11:42 +1000)
Dockerfile
Dockerfile.arm32v7
Dockerfile.arm64v8

index 29fda0ed766649d85897a9867b77b7f7e8bc01df..205d759fe2c02e463e07455ff86d09bfa85d800d 100644 (file)
@@ -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
index d1ef1389e69dc55135269d569141b6a9f1482ccc..7664f6611252a472bdeae8a9224a764b66d7654e 100644 (file)
@@ -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
index 2f26d09e8d1ef2099f8e7ee3785c054731498d4d..0175341d9ed490bd6603cdf7b213fd5558608ca0 100644 (file)
@@ -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