Fix npm install commands in Dockerfiles and ops scripts

This commit is contained in:
wiz
2022-07-07 18:32:18 +02:00
parent b8c49a693d
commit 15e2c10e45
4 changed files with 6 additions and 6 deletions

View File

@@ -8,7 +8,7 @@ COPY . .
RUN apt-get update
RUN apt-get install -y build-essential python3 pkg-config
RUN npm install
RUN npm install --omit=dev --omit=optional
RUN npm run build
FROM node:16.15.0-buster-slim