Use the Elastic Docker registry for the UBI base image (#62606)

Swap the base Docker image for UBI builds to point at Elastic's registry.
This commit is contained in:
Rory Hunter 2020-09-22 12:07:47 +01:00 committed by Rory Hunter
parent bc6bea5924
commit df2b5dd4d1
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ package org.elasticsearch.gradle;
public enum DockerBase {
CENTOS("centos:8"),
// "latest" here is intentional, since the image name specifies "8"
UBI("registry.access.redhat.com/ubi8/ubi-minimal:latest");
UBI("docker.elastic.co/ubi8/ubi-minimal:latest");
private final String image;