Forráskód Böngészése

HPCC-24667 Increase platform docker image nodejs version

Signed-off-by: Jake Smith <jake.smith@lexisnexisrisk.com>
Jake Smith 4 éve
szülő
commit
e7813e5a2b

+ 1 - 1
dockerfiles/buildall.sh

@@ -20,7 +20,7 @@
 # Build script to create and publish Docker containers corresponding to a GitHub tag
 # This script is normally invoked via GitHub actions, whenever a new tag is pushed 
 
-BASE_VER=7.10                                   # The docker hub label for the platform-build-base image. Changes rarely.
+BASE_VER=7.12                                   # The docker hub label for the platform-build-base image. Changes rarely.
 BUILD_TAG=$(git describe --exact-match --tags)  # The git tag for the images we are building
 BUILD_LABEL=${BUILD_TAG}                        # The docker hub label for all other components
 BUILD_USER=hpcc-systems                         # The github repo owner

+ 1 - 1
dockerfiles/platform-build-base/Dockerfile

@@ -82,7 +82,7 @@ RUN apt-get install -y \
   lsb-release
 
 RUN curl https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
-RUN apt-add-repository "deb https://deb.nodesource.com/node_10.x $(lsb_release -sc) main"
+RUN apt-add-repository "deb https://deb.nodesource.com/node_12.x $(lsb_release -sc) main"
 RUN apt-get update -y
 RUN apt-get install -y nodejs
 

+ 1 - 1
dockerfiles/platform-build/Dockerfile

@@ -17,7 +17,7 @@
 
 # Base container image that builds all HPCC platform components
 
-ARG BASE_VER=7.10
+ARG BASE_VER=7.12
 FROM hpccsystems/platform-build-base:${BASE_VER}
 
 RUN groupadd -g 1000 hpcc