summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-01-08 12:06:56 -0800
committerGitHub <noreply@github.com>2021-01-08 12:06:56 -0800
commit7ac29424e759e4a5acd1fb20b53c3688b2705f5d (patch)
treebb9bacf14ca4e6c56cff1c231055f9a6cf716eb6
parent419a887df6ec785cf795b289211cb40a832fa5f1 (diff)
parent84b3316258ba74e961061c789baabd5e1f2d8bf0 (diff)
downloadchef-7ac29424e759e4a5acd1fb20b53c3688b2705f5d.tar.gz
Merge pull request #10855 from chef/container_15
Make sure our containers work on RHEL 6
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
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