From 08e36c107a08749c78cba82e61dde496fa6b10c7 Mon Sep 17 00:00:00 2001 From: Mizux Seiha Date: Thu, 3 Mar 2022 16:12:59 +0100 Subject: [PATCH] tools/docker: Bump Centos-7 to gcc-11 --- tools/docker/amd64/centos-7.Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/docker/amd64/centos-7.Dockerfile b/tools/docker/amd64/centos-7.Dockerfile index e01eb720c0..32a2cfed86 100644 --- a/tools/docker/amd64/centos-7.Dockerfile +++ b/tools/docker/amd64/centos-7.Dockerfile @@ -10,12 +10,12 @@ RUN yum -y update \ && yum clean all \ && rm -rf /var/cache/yum -# Bump to gcc-9 +# Bump to gcc-11 RUN yum -y update \ && yum -y install centos-release-scl \ -&& yum -y install devtoolset-9 \ +&& yum -y install devtoolset-11 \ && yum clean all \ -&& echo "source /opt/rh/devtoolset-9/enable" >> /etc/bashrc +&& echo "source /opt/rh/devtoolset-11/enable" >> /etc/bashrc SHELL ["/bin/bash", "--login", "-c"] ENTRYPOINT ["/usr/bin/bash", "--login", "-c"] CMD ["/usr/bin/bash", "--login"]