summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJano Svitok <jsv@whitestein.com>2020-03-09 20:13:54 +0000
committerJens Geyer <jensg@apache.org>2020-03-10 22:37:33 +0100
commitb1f755a1e920f01750cc868dafd193413d17af8d (patch)
tree10dff6bc7bccbe60daa6a6abd6833beac7d15a11 /build
parent2e115774776f2e5bcfe826e30548feab030fb263 (diff)
downloadthrift-b1f755a1e920f01750cc868dafd193413d17af8d.tar.gz
THRIFT-5120: Use nodejs 8.x
Client: node Patch: Jano Svitok This closes #2054 JSDoc 3.6.3 requires Node.js >=8.15.0
Diffstat (limited to 'build')
-rw-r--r--build/docker/ubuntu-xenial/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/docker/ubuntu-xenial/Dockerfile b/build/docker/ubuntu-xenial/Dockerfile
index fbbe1c2cb..57c996485 100644
--- a/build/docker/ubuntu-xenial/Dockerfile
+++ b/build/docker/ubuntu-xenial/Dockerfile
@@ -17,7 +17,7 @@
# - dart: does not come with Ubuntu so we're installing 2.0.0-1 for coverage
# - dotnet: does not come with Ubuntu
# - go: Xenial comes with 1.6, but we need 1.10 or later
-# - nodejs: Xenial comes with 4.2.6 which exits LTS April 2018, so we're installing 6.x
+# - nodejs: Xenial comes with 4.2.6 which exits LTS April 2018, so we're installing 8.x
# - ocaml: causes stack overflow error, just started March 2018 not sure why
#
@@ -54,7 +54,7 @@ RUN apt-get update && \
# node.js
curl -sL https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
- echo "deb https://deb.nodesource.com/node_6.x xenial main" | tee /etc/apt/sources.list.d/nodesource.list
+ echo "deb https://deb.nodesource.com/node_8.x xenial main" | tee /etc/apt/sources.list.d/nodesource.list
### install general dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \