From aa8f21cbabb48a47cab59682f86be733fdbfe90f Mon Sep 17 00:00:00 2001 From: Thomas Watson Date: Wed, 6 Jan 2021 19:39:19 +0100 Subject: [PATCH] Bump the CI Node.js version from 14.15.3 to 14.15.4 (#87436) This wasn't part of #87207 as Docker Hub wasn't updated at the time. --- .ci/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/Dockerfile b/.ci/Dockerfile index 8a972c65f8412..3ca6b6a4b9098 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=14.15.3 +ARG NODE_VERSION=14.15.4 FROM node:${NODE_VERSION} AS base