From 7e007b7e86277781bc90a2faf833d3cd77f1727d Mon Sep 17 00:00:00 2001 From: Katalina Okano Date: Sun, 20 Dec 2020 01:04:27 -0500 Subject: [PATCH] chore: add HUSKY=0 to ui dockerfile --- hack/dockerfiles/ui.Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hack/dockerfiles/ui.Dockerfile b/hack/dockerfiles/ui.Dockerfile index 2ea3081..ce60853 100644 --- a/hack/dockerfiles/ui.Dockerfile +++ b/hack/dockerfiles/ui.Dockerfile @@ -4,6 +4,9 @@ FROM mhart/alpine-node:14 AS builder WORKDIR /src +# Disable Husky as it will fail +ENV HUSKY 0 + COPY package.json yarn.lock ./ RUN yarn install --frozen-lockfile