From 2e26be2d9616f6cc546ddebd3fa33b1b8c1cc66d Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Wed, 25 Sep 2024 16:11:33 +0200 Subject: [PATCH] use EL9 for the container --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index a0538180..7a592497 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM quay.io/centos/centos:stream8 +FROM quay.io/centos/centos:stream9 -RUN echo "tsflags=nodocs" >> /etc/yum.conf && \ - yum -y install git glibc-langpack-en epel-release python3-pip 'dnf-command(config-manager)' && \ - yum clean all +RUN echo "tsflags=nodocs" >> /etc/dnf.conf && \ + dnf -y install git glibc-langpack-en epel-release python3-pip 'dnf-command(config-manager)' && \ + dnf clean all ENV LANG=en_US.UTF-8 \ LANGUAGE=en_US.UTF-8 \