summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2021-01-08 09:26:17 -0800
committerTim Smith <tsmith84@gmail.com>2021-01-08 09:26:17 -0800
commitfced33f64a49ac122d325ef830ef21c57dc50819 (patch)
tree2ba975e6eb5ac583312d1fb6d0334220901aa578 /Dockerfile
parent0d483a4ebdb900534e020de6356201ddde379161 (diff)
downloadchef-fced33f64a49ac122d325ef830ef21c57dc50819.tar.gz
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 <tsmith@chef.io>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index ae06e5ba0a..473364be60 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -20,7 +20,7 @@ LABEL maintainer="Chef Software, Inc. <docker@chef.io>"
ARG CHANNEL=stable
ARG VERSION=16.8.14
-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