build-image
build-image copied to clipboard
Run homebrew install before other installs
We can use Homebrew to install system libraries that may be required by Python/Ruby/Node packages. For that reason, we should run the Homebrew installation step before installing other languages' packages.
+1 for this, can't install pg Rubygem because it needs libpq, but the Brewfile is executed AFTER bundling Rubygems, so this fails.
I've created a PR to address this: https://github.com/netlify/build-image/pull/705