mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 12:49:43 +02:00
fix: Fix type of omit flag
This commit is contained in:
parent
903c3322b7
commit
1fda1bc687
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue