diff --git a/.github/docker/testing/Dockerfile.testing-plugins-alma8 b/.github/docker/testing/Dockerfile.testing-plugins-alma8 index 2f9d73501..95f11f84b 100644 --- a/.github/docker/testing/Dockerfile.testing-plugins-alma8 +++ b/.github/docker/testing/Dockerfile.testing-plugins-alma8 @@ -62,9 +62,8 @@ gpgkey=https://yum-gpg.centreon.com/RPM-GPG-KEY-CES\n'\ dnf config-manager --add-repo https://packages.centreon.com/rpm-standard/24.10/el8/centreon-24.10.repo dnf update -y -dnf install -y centreon-connector-perl -dnf install -y centreon-clib -dnf clean all --enablerepo=* +dnf install -y centreon-connector-perl centreon-clib + mkdir -p /var/lib/centreon/centplugins/ chmod 777 /var/lib/centreon/centplugins/ diff --git a/.github/docker/testing/Dockerfile.testing-plugins-alma9 b/.github/docker/testing/Dockerfile.testing-plugins-alma9 index 8371fe745..40f8a34f7 100644 --- a/.github/docker/testing/Dockerfile.testing-plugins-alma9 +++ b/.github/docker/testing/Dockerfile.testing-plugins-alma9 @@ -62,11 +62,7 @@ gpgkey=https://yum-gpg.centreon.com/RPM-GPG-KEY-CES\n'\ # Add Centreon plugins repositories dnf config-manager --add-repo https://packages.centreon.com/rpm-standard/24.10/el9/centreon-24.10.repo dnf update -y -dnf clean all --enablerepo=* -dnf install -y centreon-connector-perl -dnf install -y centreon-clib - -dnf update -y +dnf install -y centreon-connector-perl centreon-clib mkdir -p /var/lib/centreon/centplugins/ chmod 777 /var/lib/centreon/centplugins/ diff --git a/.github/docker/testing/Dockerfile.testing-plugins-bookworm b/.github/docker/testing/Dockerfile.testing-plugins-bookworm index a1a4a936e..53b2daaaf 100644 --- a/.github/docker/testing/Dockerfile.testing-plugins-bookworm +++ b/.github/docker/testing/Dockerfile.testing-plugins-bookworm @@ -22,7 +22,7 @@ EOF ENV LANG=en_US.utf8 -RUN bash < /dev/null 2>&1 # Update -apt-get update +apt-get update -y apt-get install -y centreon-clib centreon-connector-perl centreon-plugins @@ -59,6 +59,8 @@ rm -f /etc/apt/sources.list.d/centreon.list mkdir -p /var/lib/centreon/centplugins/ chmod 777 /var/lib/centreon/centplugins/ -apt-get clean +apt-get update -y + +apt-get clean -y EOF \ No newline at end of file diff --git a/.github/docker/testing/Dockerfile.testing-plugins-bullseye b/.github/docker/testing/Dockerfile.testing-plugins-bullseye index 7fa6d943a..36164bc73 100644 --- a/.github/docker/testing/Dockerfile.testing-plugins-bullseye +++ b/.github/docker/testing/Dockerfile.testing-plugins-bullseye @@ -5,7 +5,7 @@ FROM ${REGISTRY_URL}/debian:bullseye ENV DEBIAN_FRONTEND=noninteractive # fix locale -RUN bash -e <