fix: Fix type of omit flag

This commit is contained in:
Maksim Eltyshev
2022-11-30 03:15:02 +01:00
parent 903c3322b7
commit 1fda1bc687
+2 -2
View File
@@ -5,7 +5,7 @@ WORKDIR /app
COPY server/package.json server/package-lock.json .
RUN npm install npm@latest --global \
&& npm clean-install --omit=development
&& npm clean-install --omit=dev
FROM node:lts AS client
@@ -14,7 +14,7 @@ WORKDIR /app
COPY client/package.json client/package-lock.json .
RUN npm install npm@latest --global \
&& npm clean-install --omit=development
&& npm clean-install --omit=dev
COPY client .
RUN DISABLE_ESLINT_PLUGIN=true npm run build