From ac87094c43ecbf7b83f6309e69a351f5c343f7e7 Mon Sep 17 00:00:00 2001 From: Uladzimir Havenchyk Date: Fri, 1 May 2020 07:40:15 +0300 Subject: [PATCH] chore: move yarn install above --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eeb72d9b94c..acd34dc9e1b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,7 +44,8 @@ WORKDIR /app # Enables layer caching COPY package.json yarn.lock ./ -RUN yarn config set workspaces-experimental true && yarn install --frozen-lockfile && yarn cache clean +RUN yarn config set workspaces-experimental true +RUN yarn install --frozen-lockfile && yarn cache clean COPY . /app