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 \