From 1a1e93be9cf8632355ccbc9b51644df3f44d53d9 Mon Sep 17 00:00:00 2001 From: Grzegorz Leoniec Date: Thu, 29 Nov 2018 19:23:14 +0100 Subject: [PATCH] removed --ignore-engines from docker build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7ababd203..5201c1847 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,11 +15,11 @@ RUN apk --no-cache add git COPY package.json . COPY yarn.lock . COPY styleguide/ ./styleguide -RUN yarn install --production=false --frozen-lockfile --non-interactive --ignore-engines +RUN yarn install --production=false --frozen-lockfile --non-interactive # Install and build Styleguide COPY styleguide/ ./styleguide -RUN cd styleguide && yarn install --production=false --frozen-lockfile --non-interactive --ignore-engines \ +RUN cd styleguide && yarn install --production=false --frozen-lockfile --non-interactive \ && cd .. \ && yarn run styleguide:build \ && rm -Rf styleguide/node_modules