feat(dockerfile): remove npm update command & add --force flag for solve dependencies issues

-
feat/x_gpu/new_version
TBS093A 2024-04-12 19:23:51 +02:00
parent 1a63be25fc
commit 093fec96bf
1 changed files with 1 additions and 2 deletions

View File

@ -4,7 +4,6 @@ WORKDIR /app
COPY . ./ COPY . ./
RUN npm install npm@latest && \ RUN npm install --silent --force
npm install --silent
CMD ["npm", "run", "build"] CMD ["npm", "run", "build"]