summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Duffield <tom@chef.io>2018-01-18 08:11:16 -0600
committerTom Duffield <tom@chef.io>2018-01-18 08:11:16 -0600
commit5ae87e1f2a7872e82ef36e8671b88c1223a7bb1b (patch)
tree1f1ec42fc87dd99049f0c97fab14e5022e1225bb
parentb12f3cc1e899006ac01bfef9348b89e19ab5027c (diff)
downloadchef-tduffield/docker-rhel6.tar.gz
Update Dockerfile to use RHEL6 buildtduffield/docker-rhel6
RHEL5 has been EOL and builds are no longer being produced. Move the Dockerfile to use RHEL6. Signed-off-by: Tom Duffield <tom@chef.io>
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 4b3c3f5e67..4c87de012c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,7 +4,7 @@ MAINTAINER Chef Software, Inc. <docker@chef.io>
ARG CHANNEL=stable
ARG VERSION=13.6.4
-RUN wget "http://packages.chef.io/files/${CHANNEL}/chef/${VERSION}/el/5/chef-${VERSION}-1.el5.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