Kaynağa Gözat

fix: disable eslint when building (close #371, close #376)

JustSong 2 yıl önce
ebeveyn
işleme
2b088a1678
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -4,7 +4,7 @@ WORKDIR /build
 COPY ./web .
 COPY ./web .
 COPY ./VERSION .
 COPY ./VERSION .
 RUN npm install
 RUN npm install
-RUN REACT_APP_VERSION=$(cat VERSION) npm run build
+RUN DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$(cat VERSION) npm run build
 
 
 FROM golang AS builder2
 FROM golang AS builder2