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.
This commit is contained in:
Thomas Watson 2020-09-17 15:33:21 +02:00 committed by GitHub
parent 6508b6e811
commit 10edd19124
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=10.22.0
ARG NODE_VERSION=10.22.1
FROM node:${NODE_VERSION} AS base