From f355431fb67e02bf81041c1ddf395770a774c657 Mon Sep 17 00:00:00 2001 From: Guy Bianco IV Date: Tue, 16 Nov 2021 03:37:38 -0500 Subject: [PATCH] Fix(ch08s04): Correct Chef download link in Containerfile (#192) --- nexus3/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nexus3/Dockerfile b/nexus3/Dockerfile index 182307a..c835f8d 100644 --- a/nexus3/Dockerfile +++ b/nexus3/Dockerfile @@ -56,7 +56,7 @@ ADD solo.json.erb /var/chef/solo.json.erb # Install using chef-solo # Chef version locked to avoid needing to accept the EULA on behalf of whomever builds the image RUN yum install -y --disableplugin=subscription-manager hostname procps \ - && curl -L https://www.getchef.com/chef/install.sh | bash -s -- -v 14.12.9 \ + && curl -L https://www.chef.io/chef/install.sh | bash -s -- -v 14.12.9 \ && /opt/chef/embedded/bin/erb /var/chef/solo.json.erb > /var/chef/solo.json \ && chef-solo \ --recipe-url ${NEXUS_REPOSITORY_MANAGER_COOKBOOK_URL} \