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
This commit is contained in:
Clark Boylan
2025-08-26 15:26:48 -07:00
parent 3580287086
commit fd977aa860

View File

@@ -13,12 +13,12 @@
# You should have received a copy of the GNU General Public License
# along with this software. If not, see <http://www.gnu.org/licenses/>.
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