From 07275a67252525d9653608886ffb29a925e59522 Mon Sep 17 00:00:00 2001 From: "James P. Ketrenos" Date: Thu, 19 Nov 2020 15:39:44 -0800 Subject: [PATCH] use harbor instead of docker-hub Signed-off-by: James P. Ketrenos --- Dockerfile | 2 +- templates/centos/00-from.in | 2 +- templates/ubuntu/00-from.in | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 71fe5ee..ec0c0ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ # Template from templates/ubuntu/00-from.in # # Pull from ubuntu on Docker Hub -FROM ubuntu:focal AS xe-base-stage +FROM amr-registry.caas.intel.com/vtt-osgc/os/ubuntu:focal AS xe-base-stage # diff --git a/templates/centos/00-from.in b/templates/centos/00-from.in index e80993b..5935045 100644 --- a/templates/centos/00-from.in +++ b/templates/centos/00-from.in @@ -1,5 +1,5 @@ # Pull $OS_DISTRO from Docker Hub -FROM $OS_DISTRO:$OS_RELEASE as xe-base-stage +FROM amr-registry.caas.intel.com/vtt-osgc/os/$OS_DISTRO:$OS_RELEASE as xe-base-stage # Flush cached package lists to prevent stale data RUN dnf clean all diff --git a/templates/ubuntu/00-from.in b/templates/ubuntu/00-from.in index e6b66d0..0a12fbc 100644 --- a/templates/ubuntu/00-from.in +++ b/templates/ubuntu/00-from.in @@ -1,3 +1,3 @@ # Pull from $OS_DISTRO on Docker Hub -FROM $OS_DISTRO:$OS_RELEASE AS xe-base-stage +FROM amr-registry.caas.intel.com/vtt-osgc/os/$OS_DISTRO:$OS_RELEASE AS xe-base-stage