X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=Dockerfile;h=205d759fe2c02e463e07455ff86d09bfa85d800d;hb=e6596ca6eea8792cb6b1a6a2e1c48b8ed44093cd;hp=29fda0ed766649d85897a9867b77b7f7e8bc01df;hpb=d10b219db596bb215db502b42e19443b8924fd56;p=github%2Fbastienwirtz%2Fhomer.git diff --git a/Dockerfile b/Dockerfile index 29fda0e..205d759 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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