From 10edd1912495cdac863639b3772890b23b31e76a Mon Sep 17 00:00:00 2001 From: Thomas Watson Date: Thu, 17 Sep 2020 15:33:21 +0200 Subject: [PATCH] Bump the Node.js version used by Docker in CI (#77714) (#77731) This change was left out of #77619 because the new Docker images wasn't published at the time. --- .ci/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/Dockerfile b/.ci/Dockerfile index 065b7f2aafd6..d6eee046611b 100644 --- a/.ci/Dockerfile +++ b/.ci/Dockerfile @@ -1,7 +1,7 @@ # NOTE: This Dockerfile is ONLY used to run certain tasks in CI. It is not used to run Kibana or as a distributable. # If you're looking for the Kibana Docker image distributable, please see: src/dev/build/tasks/os_packages/docker_generator/templates/dockerfile.template.ts -ARG NODE_VERSION=10.22.0 +ARG NODE_VERSION=10.22.1 FROM node:${NODE_VERSION} AS base