summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-11-30 15:59:06 -0800
committerLance Albertson <lance@osuosl.org>2021-01-06 12:04:30 -0800
commit611ce2790e246edb036f62474344dda2b1235e91 (patch)
tree77c0f63c58a146ead83cd1d3c72840ac8a3306d4
parenta4dffdda3f27253ab20f4c10df09b266a666bdcc (diff)
downloadchef-611ce2790e246edb036f62474344dda2b1235e91.tar.gz
Update the Docker file to use the RHEL 7 package
These are the same package, but in a while we're get rid of RHEL 6 and this will break. Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 23bdfc7142..1eebaf007c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -26,7 +26,7 @@ ARG VERSION=15.14.0
ENV VERSION ${EXPEDITOR_VERSION:-${VERSION}}
ENV CHANNEL ${EXPEDITOR_CHANNEL:-${CHANNEL}}
-RUN wget "http://packages.chef.io/files/${CHANNEL}/chef/${VERSION}/el/6/chef-${VERSION}-1.el6.x86_64.rpm" -O /tmp/chef-client.rpm && \
+RUN wget "http://packages.chef.io/files/${CHANNEL}/chef/${VERSION}/el/7/chef-${VERSION}-1.el7.x86_64.rpm" -O /tmp/chef-client.rpm && \
rpm2cpio /tmp/chef-client.rpm | cpio -idmv && \
rm -rf /tmp/chef-client.rpm