Skip to content

Commit e716276

Browse files
authored
docker/build: remove npm reinstall (#241)
fix/workaround for: npm/cli#9151
1 parent 79f07a5 commit e716276

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docker/build.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt-get -y update && apt-get -y upgrade
1111
# install latest nodejs lts version
1212
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg &&\
1313
curl -fsSL https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash -
14-
RUN apt-get -y update && apt-get -y install nodejs && npm update -g npm
14+
RUN apt-get -y update && apt-get -y install nodejs
1515

1616
# needed to be able to compile LLVM
1717
RUN if [ "$(uname -m)" != x86_64 ]; then \

0 commit comments

Comments
 (0)