Skip to content

Commit

Permalink
fix: Change "npm install" to "npm ci" to install fixed version packag… (
Browse files Browse the repository at this point in the history
#385)

fix: Change "npm install" to "npm ci" to install fixed version packages for docker image

Signed-off-by: Taras Drozdovskyi <t.drozdovsky@samsung.com>
  • Loading branch information
tdrozdovsky committed Jan 3, 2024
1 parent 6e4e613 commit 32bc2dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM node:18@sha256:a6385a6bb2fdcb7c48fc871e35e32af8daaa82c518900be49b76d10c0058

WORKDIR /frontend
COPY frontend .
RUN npm install
RUN npm ci
RUN npm run build

# Base image for building lpvs lib
Expand Down

0 comments on commit 32bc2dc

Please sign in to comment.