From common-commits-return-92543-archive-asf-public=cust-asf.ponee.io@hadoop.apache.org Tue Jan 15 00:34:10 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id CD454180675 for ; Tue, 15 Jan 2019 00:34:09 +0100 (CET) Received: (qmail 96214 invoked by uid 500); 14 Jan 2019 23:34:08 -0000 Mailing-List: contact common-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list common-commits@hadoop.apache.org Received: (qmail 96198 invoked by uid 99); 14 Jan 2019 23:34:08 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Jan 2019 23:34:08 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 17FA0870CF; Mon, 14 Jan 2019 23:34:08 +0000 (UTC) Date: Mon, 14 Jan 2019 23:34:08 +0000 To: "common-commits@hadoop.apache.org" Subject: [hadoop] 01/01: more testing MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: jhung@apache.org In-Reply-To: <154750884783.4910.2616004573755045767@gitbox.apache.org> References: <154750884783.4910.2616004573755045767@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: hadoop X-Git-Refname: refs/heads/YARN-8200 X-Git-Reftype: branch X-Git-Rev: b6b4d92fbe15931724eea7b83a72be690fbdceae X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20190114233408.17FA0870CF@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. jhung pushed a commit to branch YARN-8200 in repository https://gitbox.apache.org/repos/asf/hadoop.git commit b6b4d92fbe15931724eea7b83a72be690fbdceae Author: Jonathan Hung AuthorDate: Mon Jan 14 15:11:45 2019 -0800 more testing --- dev-support/docker/Dockerfile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/dev-support/docker/Dockerfile b/dev-support/docker/Dockerfile index 026109f..f6dc6e4 100644 --- a/dev-support/docker/Dockerfile +++ b/dev-support/docker/Dockerfile @@ -137,12 +137,14 @@ ENV MAVEN_OPTS -Xms256m -Xmx1536m ### # Install node js tools for web UI frameowkr ### -RUN apt-get -y install nodejs && \ - ln -s /usr/bin/nodejs /usr/bin/node && \ - apt-get -y install npm && \ - npm config set strict-ssl false && \ - npm install -g bower && \ - npm install -g ember-cli +RUN apt-get -q update \ + && apt-get install -y --no-install-recommends nodejs npm \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* \ + && ln -s /usr/bin/nodejs /usr/bin/node \ + && npm config set strict-ssl false \ + && npm install npm@latest -g \ + && npm install -g jshint ### # Everything past this point is either not needed for testing or breaks Yetus. --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org For additional commands, e-mail: common-commits-help@hadoop.apache.org