From fd977aa8600a8efbecfb4b045eb0fdded7938e18 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 26 Aug 2025 15:26:48 -0700 Subject: [PATCH] Pull python base images from quay.io The depends-on change moves the publication location for these python base images to quay.io. Update the Dockerfile here to pull from the new canonical locations to match. Depends-On: https://review.opendev.org/c/opendev/system-config/+/957277/ Change-Id: I69718c35b0ef3b847677eb5913033b184fc80037 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9938e7c..74ffa47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,12 +13,12 @@ # You should have received a copy of the GNU General Public License # along with this software. If not, see . -FROM docker.io/opendevorg/python-builder:3.11-bookworm as builder +FROM quay.io/opendevorg/python-builder:3.11-bookworm as builder COPY . /tmp/src RUN assemble -FROM docker.io/opendevorg/python-base:3.11-bookworm as statusbot +FROM quay.io/opendevorg/python-base:3.11-bookworm as statusbot COPY --from=builder /output/ /output RUN /output/install-from-bindep