Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump npm from 7.10.0 to 7.19.1 #4052

Merged
merged 2 commits into from Jul 15, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 3 additions & 6 deletions Dockerfile
Expand Up @@ -97,14 +97,11 @@ USER root

### JAVASCRIPT

# Install Node 14.0 and npm (updated after elm)
# Install Node 14.0 and npm v7
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - \
&& apt-get install -y --no-install-recommends nodejs \
&& rm -rf /var/lib/apt/lists/*

# NOTE: This was a hack to get around the fact that elm 18 failed to install with
# npm 7, we should look into installing the latest version of node + npm
RUN npm install -g npm@v7.10.0 \
&& rm -rf /var/lib/apt/lists/* \
&& npm install -g npm@v7.19.1 \
&& rm -rf ~/.npm


Expand Down