From 84b3316258ba74e961061c789baabd5e1f2d8bf0 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Fri, 8 Jan 2021 09:26:17 -0800 Subject: Make sure our containers work on RHEL 6 We need to still install on RHEL 6 so we get GLIBC 2.12 support Signed-off-by: Tim Smith --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 488d5805b4..ce5b919349 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ ARG VERSION=15.15.0 ENV VERSION ${EXPEDITOR_VERSION:-${VERSION}} ENV CHANNEL ${EXPEDITOR_CHANNEL:-${CHANNEL}} -RUN wget "http://packages.chef.io/files/${CHANNEL}/chef/${VERSION}/el/7/chef-${VERSION}-1.el7.x86_64.rpm" -O /tmp/chef-client.rpm && \ +RUN wget "http://packages.chef.io/files/${CHANNEL}/chef/${VERSION}/el/6/chef-${VERSION}-1.el6.x86_64.rpm" -O /tmp/chef-client.rpm && \ rpm2cpio /tmp/chef-client.rpm | cpio -idmv && \ rm -rf /tmp/chef-client.rpm -- cgit v1.2.1