From 632d8af4b069ce4f965701bab96766e65b3850fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6nig?= Date: Sun, 1 Sep 2024 19:36:29 +0200 Subject: [PATCH] Disable SELINUX on CentOS 9 test dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christian König --- test/_centos_9.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/_centos_9.Dockerfile b/test/_centos_9.Dockerfile index 6ccd18b6..35f7b3f8 100644 --- a/test/_centos_9.Dockerfile +++ b/test/_centos_9.Dockerfile @@ -1,4 +1,6 @@ FROM quay.io/centos/centos:stream9 +# Disable SELinux +RUN echo "SELINUX=disabled" > /etc/selinux/config RUN yum install -y --allowerasing curl git initscripts ENV GITDIR /etc/.pihole