From d528e81b6d754e094d0e549f609b242fff1de63f 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.15 image. Change-Id: I044092e83b1a525ffd7692971a2e3313dfa1e421 --- cni.Dockerfile | 4 ++-- controller.Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cni.Dockerfile b/cni.Dockerfile index ccd3805dd..8e8fbb0bd 100644 --- a/cni.Dockerfile +++ b/cni.Dockerfile @@ -1,10 +1,10 @@ -FROM quay.io/app-sre/golang:1.15 as builder +FROM quay.io/kuryr/golang:1.15 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/master" diff --git a/controller.Dockerfile b/controller.Dockerfile index 619f4a299..34c4f9db9 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/master"