From bc825b9628f2fca9d250f91728d4aebb155f1331 Mon Sep 17 00:00:00 2001 From: Akira Ajisaka Date: Mon, 23 Dec 2019 10:30:26 +0900 Subject: [PATCH] YARN-10036. Install yarnpkg and upgrade nodejs in Dockerfile (#1772) --- dev-support/docker/Dockerfile | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/dev-support/docker/Dockerfile b/dev-support/docker/Dockerfile index 7ff5d803049..8ec6fd08f73 100644 --- a/dev-support/docker/Dockerfile +++ b/dev-support/docker/Dockerfile @@ -174,16 +174,23 @@ 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 8.17.0 for web UI framework (4.2.6 ships with Xenial) ### -# hadolint ignore=DL3008, DL3016 -RUN apt-get -q update \ - && apt-get install -y --no-install-recommends nodejs npm \ +RUN curl -L -s -S https://deb.nodesource.com/setup_8.x | bash - \ + && apt-get install -y --no-install-recommends nodejs=8.17.0-1nodesource1 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ - && ln -s /usr/bin/nodejs /usr/bin/node \ - && npm install npm@latest -g \ - && npm install -g jshint + && npm install -g bower@1.8.8 + +### +## Install Yarn 1.12.1 for web UI framework +#### +RUN curl -s -S https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ + && echo 'deb https://dl.yarnpkg.com/debian/ stable main' > /etc/apt/sources.list.d/yarn.list \ + && apt-get -q update \ + && apt-get install -y --no-install-recommends yarn=1.12.1-1 \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* ### # Install hadolint