chore: add HUSKY=0 to ui dockerfile

This commit is contained in:
41666 2020-12-20 01:04:27 -05:00
parent b98eb10c12
commit 7e007b7e86

View file

@ -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