Return-Path: X-Original-To: apmail-avro-commits-archive@www.apache.org Delivered-To: apmail-avro-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A702B184F7 for ; Fri, 4 Dec 2015 19:46:30 +0000 (UTC) Received: (qmail 18159 invoked by uid 500); 4 Dec 2015 19:46:30 -0000 Delivered-To: apmail-avro-commits-archive@avro.apache.org Received: (qmail 18104 invoked by uid 500); 4 Dec 2015 19:46:30 -0000 Mailing-List: contact commits-help@avro.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@avro.apache.org Delivered-To: mailing list commits@avro.apache.org Received: (qmail 18095 invoked by uid 99); 4 Dec 2015 19:46:30 -0000 Received: from Unknown (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Dec 2015 19:46:30 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id F260ACCE8D for ; Fri, 4 Dec 2015 19:46:29 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.791 X-Spam-Level: * X-Spam-Status: No, score=1.791 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, T_RP_MATCHES_RCVD=-0.01, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-us-west.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id szRN5n63vPUM for ; Fri, 4 Dec 2015 19:46:23 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with ESMTP id 78741215F4 for ; Fri, 4 Dec 2015 19:46:23 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id EFB19E0280 for ; Fri, 4 Dec 2015 19:46:22 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id EDD263A1AE9 for ; Fri, 4 Dec 2015 19:46:22 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1718013 - in /avro/trunk: CHANGES.txt share/docker/Dockerfile Date: Fri, 04 Dec 2015 19:46:22 -0000 To: commits@avro.apache.org From: blue@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20151204194622.EDD263A1AE9@svn01-us-west.apache.org> Author: blue Date: Fri Dec 4 19:46:22 2015 New Revision: 1718013 URL: http://svn.apache.org/viewvc?rev=1718013&view=rev Log: AVRO-1765: JS: Update node.js in docker to 4.x. Modified: avro/trunk/CHANGES.txt avro/trunk/share/docker/Dockerfile Modified: avro/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/avro/trunk/CHANGES.txt?rev=1718013&r1=1718012&r2=1718013&view=diff ============================================================================== --- avro/trunk/CHANGES.txt (original) +++ avro/trunk/CHANGES.txt Fri Dec 4 19:46:22 2015 @@ -109,6 +109,8 @@ Avro 1.8.0 (10 August 2014) AVRO-1739. Update Avro URLs and mailing lists. (Gabor Liptak via blue) + AVRO-1765: JS: Update node.js version in docker to 4.x. (blue) + BUG FIXES AVRO-1553. Java: MapReduce never uses MapOutputValueSchema (tomwhite) Modified: avro/trunk/share/docker/Dockerfile URL: http://svn.apache.org/viewvc/avro/trunk/share/docker/Dockerfile?rev=1718013&r1=1718012&r2=1718013&view=diff ============================================================================== --- avro/trunk/share/docker/Dockerfile (original) +++ avro/trunk/share/docker/Dockerfile Fri Dec 4 19:46:22 2015 @@ -21,13 +21,16 @@ FROM java:7-jdk WORKDIR /root +# Add the repository for node.js 4.x +RUN curl -sL https://deb.nodesource.com/setup_4.x | bash - + # Install dependencies from packages RUN apt-get update && apt-get install --no-install-recommends -y \ git subversion curl ant make maven \ gcc cmake asciidoc source-highlight \ g++ flex bison libboost-all-dev doxygen \ mono-devel mono-gmcs nunit \ - nodejs nodejs-legacy npm \ + nodejs \ perl \ php5 phpunit php5-gmp bzip2 \ python python-setuptools python3-setuptools \