Bump the Node.js version used by Docker in CI (#110760)

This is a follow up to PR #110654 where the Node.js version required by
Kibana was upgraded.
This commit is contained in:
Thomas Watson 2021-09-01 12:05:15 +02:00 committed by GitHub
parent d34ef7ba9f
commit f686164c93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.17.5
ARG NODE_VERSION=14.17.6
FROM node:${NODE_VERSION} AS base