Skip to content
Snippets Groups Projects
Commit 1efc8a6d authored by paflov's avatar paflov
Browse files

Use clean install when installing npm-modules

parent 38d539b8
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,8 @@ WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
COPY package.json /app/package.json
RUN npm install
COPY package-lock.json /app/package-lock.json
RUN npm ci
# install webdriver for browser testing
RUN npm i --prefix=./node_modules/protractor --save webdriver-manager@latest
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment