Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions build-tools/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -171,12 +171,13 @@ RUN pip2 install pylint==1.9.2
RUN pip2 install python-dateutil==2.7.3

###
# Install node.js for web UI framework (4.2.6 ships with Xenial)
# Install node.js for web UI framework (8.10.0 ships with Bionic, let's override with 10.x)
###
# hadolint ignore=DL3008, DL3016
RUN apt-get -q update \
&& apt-get install -y --no-install-recommends nodejs npm \
&& apt-get clean \
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
# hadolint ignore=DL3008, DL3015
RUN apt-get install -y nodejs
# hadolint ignore=DL3016
RUN apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& npm install npm@latest -g \
&& npm install -g jshint
Expand Down