From 0165108484c6a3a6bbebe3e425def5b95c918c12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Dulko?= Date: Mon, 14 Dec 2020 11:56:17 +0100 Subject: [PATCH] Fix base docker images Seems like quay.io/app-sre is no longer available to public and builds fail. This commit fixes that by using registry.centos.org to get centos:8 container image and our own quay.io/kuryr to host the golang:1.11 image. Change-Id: I044092e83b1a525ffd7692971a2e3313dfa1e421 (cherry picked from commit d528e81b6d754e094d0e549f609b242fff1de63f) (cherry picked from commit 2904308228a5a308c112f89af34de31fa8620a2d) --- cni.Dockerfile | 4 ++-- controller.Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cni.Dockerfile b/cni.Dockerfile index 570e45ef8..81596bec1 100644 --- a/cni.Dockerfile +++ b/cni.Dockerfile @@ -1,10 +1,10 @@ -FROM quay.io/app-sre/golang:1.11 AS builder +FROM quay.io/kuryr/golang:1.11 AS builder WORKDIR /go/src/opendev.com/kuryr-kubernetes COPY . . RUN go build -o /go/bin/kuryr-cni ./kuryr_cni -FROM quay.io/app-sre/centos:8 +FROM registry.centos.org/centos:8 LABEL authors="Antoni Segura Puimedon, Michał Dulko" ARG UPPER_CONSTRAINTS_FILE="https://releases.openstack.org/constraints/upper/ussuri" diff --git a/controller.Dockerfile b/controller.Dockerfile index 128f0ff48..1e3f9ad28 100644 --- a/controller.Dockerfile +++ b/controller.Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/app-sre/centos:8 +FROM registry.centos.org/centos:8 LABEL authors="Antoni Segura Puimedon, Michał Dulko" ARG UPPER_CONSTRAINTS_FILE="https://releases.openstack.org/constraints/upper/ussuri"