From 1f4263f59365451253548252868a9d43aa507d0d Mon Sep 17 00:00:00 2001 From: Uladzimir Havenchyk Date: Fri, 1 May 2020 08:15:22 +0300 Subject: [PATCH] chore: revert back yarn install --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index acd34dc9e1..92a094be49 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,11 +44,13 @@ WORKDIR /app # Enables layer caching COPY package.json yarn.lock ./ -RUN yarn config set workspaces-experimental true -RUN yarn install --frozen-lockfile && yarn cache clean +RUN yarn install --frozen-lockfile COPY . /app +RUN yarn config set workspaces-experimental true +RUN yarn install --frozen-lockfile && yarn cache clean + # needs to be +rw for rm and mkdir /build RUN chmod a+rw /app && \ chmod a+rw /app/packages/picasso && \