summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-01-08 10:41:29 -0800
committerGitHub <noreply@github.com>2021-01-08 10:41:29 -0800
commitddbb348d5f041a4994ff689fbc218b955ca36d88 (patch)
tree02cd0b758c9388f640b96e74af3b4ce2f9c38b65
parentabf4939947033a59666e96dfe47b4e7374416610 (diff)
parentfced33f64a49ac122d325ef830ef21c57dc50819 (diff)
downloadchef-ddbb348d5f041a4994ff689fbc218b955ca36d88.tar.gz
Merge pull request #10852 from chef/rhel6_containers
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 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