build-image
build-image copied to clipboard
This is the build image used for running automated builds
There are a few loglines in the output of every build we could safely skip IMNSHO. Not saying don't run the commands, just outputting them doesn't serve a purpose I...
I just stumbled over the fact that the images still contain PHP 5.6. PHP 5.6 is EOL since the end of 2018, so you might want to remove it.
It would be great to have an option to skip composer install, for example if you have all dependencies already in your git repo ([which can be a good idea](https://www.codeenigma.com/build/blog/do-you-really-need-composer-production)).
## Cache restore * In most cases we conditionally restore the cache (and log about it), eg. Node and Ruby based on whether we think the cache is needed. In...
Today we added `rustup` to our default build image (https://github.com/netlify/build-image/pull/477). Once we see that it's working well, we should promote the change.
npm audit is a development tool, here the only thing it does is slow down the build. npm install by default is a development tool, so it includes features like...
Hi there, I am looking to create thumbnails for PDFs during the build process, and it appears current image has no support for this (unless I am missing something). Would...
I have a monorepo, where python and react live in same repository. The root of the repository have yarn.lock and runtime.txt. The runtime.txt is the one used by Heroku and...
The Netlify build is currently using version 2 of Composer, however not all plugins are yet Composer 2 compatible so it would be great if there was a way to...
Similar to https://github.com/netlify/build/issues/1149, as a node user, sometimes, I would need to run some command before `npm install` is run so that my build will not fail. One scenario where...