Remove install latest npm

This commit is contained in:
soulgalore 2022-02-09 13:29:16 +01:00
parent 0942f8cc63
commit d9b68a52e4
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY package.* /usr/src/app/
RUN npm install -g npm@latest && npm install --production && npm cache clean --force
RUN npm install --production && npm cache clean --force
COPY . /usr/src/app
COPY docker/scripts/start.sh /start.sh