You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2019/03/11 16:29:00 UTC

[allura] branch master updated: Update Node.js 4.x to 10.x

This is an automated email from the ASF dual-hosted git repository.

brondsem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/allura.git


The following commit(s) were added to refs/heads/master by this push:
     new a6fb244  Update Node.js 4.x to 10.x
     new 81eb546  Merge pull request #20 from bustios/8257
a6fb244 is described below

commit a6fb244a3d8824a16223a4dbb519b4d12796568d
Author: Paul Bustios <pb...@gmail.com>
AuthorDate: Sat Mar 9 00:17:56 2019 -0300

    Update Node.js 4.x to 10.x
---
 Allura/docs/getting_started/install_each_step.rst | 2 +-
 Dockerfile                                        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Allura/docs/getting_started/install_each_step.rst b/Allura/docs/getting_started/install_each_step.rst
index bd46377..399d510 100644
--- a/Allura/docs/getting_started/install_each_step.rst
+++ b/Allura/docs/getting_started/install_each_step.rst
@@ -197,7 +197,7 @@ For non-Ubuntu installations see https://nodejs.org/en/download/package-manager/
 
 .. code-block:: bash
 
-    (env-allura)~$ curl --silent --location https://deb.nodesource.com/setup_4.x | sudo bash -
+    (env-allura)~$ curl --silent --location https://deb.nodesource.com/setup_10.x | sudo bash -
     (env-allura)~$ sudo apt-get install nodejs
     (env-allura)~$ cd ~/src/allura
     (env-allura)~$ npm install
diff --git a/Dockerfile b/Dockerfile
index d389f0f..a3cecc5 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -34,7 +34,7 @@ RUN apt-get update && apt-get install -y \
     sudo
 
 # up-to-date version of node & npm
-RUN curl --silent --location https://deb.nodesource.com/setup_4.x | sudo bash - && \
+RUN curl --silent --location https://deb.nodesource.com/setup_10.x | sudo bash - && \
     apt-get install --yes nodejs
 
 # Snapshot generation for SVN (and maybe other SCMs) might fail without this