This is an automated email from the ASF dual-hosted git repository. jstastnycz pushed a commit to branch radtriste-fix-pipelines in repository https://gitbox.apache.org/repos/asf/incubator-kie-kogito-pipelines.git
commit b6d47207f4d3f6e087f4d09dd8f9dab00dbe4ef0 Author: jstastny-cz <[email protected]> AuthorDate: Thu Nov 9 13:54:49 2023 +0100 fix kogito-ci-build image --- apache-nodes/Dockerfile.kogito-ci-build | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/apache-nodes/Dockerfile.kogito-ci-build b/apache-nodes/Dockerfile.kogito-ci-build index 44c6e0d6..c60faa96 100644 --- a/apache-nodes/Dockerfile.kogito-ci-build +++ b/apache-nodes/Dockerfile.kogito-ci-build @@ -61,7 +61,20 @@ countme=1\n\ metadata_expire=86400\n\ enabled_metadata=1\ ' > /etc/yum.repos.d/almalinux-appstream.repo && \ +echo -e '\ +[almalinux-baseos]\n\ +name=AlmaLinux $releasever - AppStream\n\ +mirrorlist=https://mirrors.almalinux.org/mirrorlist/$releasever/baseos\n\ +# baseurl=https://repo.almalinux.org/almalinux/$releasever/BaseOS/$basearch/os/\n\ +gpgcheck=1\n\ +gpgkey=https://repo.almalinux.org/almalinux/9.2/BaseOS/x86_64/os/RPM-GPG-KEY-AlmaLinux-9\n\ +enabled=1\n\ +countme=1\n\ +metadata_expire=86400\n\ +enabled_metadata=1\ +' > /etc/yum.repos.d/almalinux-baseos.repo && \ dnf config-manager --add-repo /etc/yum.repos.d/almalinux-appstream.repo && \ +dnf config-manager --add-repo /etc/yum.repos.d/almalinux-baseos.repo && \ dnf install -y \ xorg-x11-server-Xvfb \ gtk2-devel \ @@ -71,7 +84,8 @@ nss \ libXScrnSaver \ alsa-lib \ && dnf clean all \ -&& dnf config-manager --set-disabled almalinux-appstream +&& dnf config-manager --set-disabled almalinux-appstream \ +&& dnf config-manager --set-disabled almalinux-baseos # Cypress dependencies install (END) RUN sudo alternatives --install /usr/local/bin/python python $(which python${PYTHON_MAJOR_MINOR_VERSION}) 1 && \ @@ -82,10 +96,10 @@ RUN groupadd -g 910 nonrootuser && useradd -u 910 -g 910 nonrootuser && \ echo "nonrootuser ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers # Docker -RUN dnf -y update && dnf install -y yum-utils device-mapper-persistent-data lvm2 && \ +RUN dnf install -y yum-utils device-mapper-persistent-data lvm2 && \ dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo && \ dnf remove podman buildah && \ - dnf install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin --nobest && \ + dnf install -y --nobest --skip-broken docker-ce docker-ce-cli containerd.io docker-compose-plugin && \ dnf clean all && \ alternatives --install /usr/local/bin/docker-compose docker-compose /usr/libexec/docker/cli-plugins/docker-compose 1 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
