From 9cf0c784f61170b0c7b07f65cb2bd2663a796dd6 Mon Sep 17 00:00:00 2001 From: mboukhalfa Date: Tue, 31 May 2022 19:16:06 +0300 Subject: [PATCH] uplift to centos9 and ironicclient 4.11.0 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index de185ce..8d35e3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM docker.io/centos:centos8 +FROM quay.io/centos/centos:stream9 # Help people find the actual baremetal command COPY scripts/openstack /usr/bin/openstack RUN dnf install -y python3 python3-requests && \ - curl https://raw.githubusercontent.com/openstack/tripleo-repos/master/tripleo_repos/main.py | python3 - -b master current-tripleo && \ + curl https://raw.githubusercontent.com/openstack/tripleo-repos/master/plugins/module_utils/tripleo_repos/main.py | python3 - -b master current-tripleo && \ dnf update -y --setopt=install_weak_deps=False && \ dnf install -y --setopt=install_weak_deps=False python3-ironicclient python3-ironic-inspector-client && \ dnf clean all && \