Skip to content

PacerPRO/heroku-buildpack-post-build-clean

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 

Repository files navigation

Post-build Clean Buildpack

A simple buildpack to run after all other buildpacks have completed, which removes a set of files defined in .slug-post-clean, so that they are not included in the finished slug.

Rationale

While this may seem to duplicate functionality provided by Heroku's .slugignore, there is a key difference: .slugignore'd files are removed after the repo is cloned, but before any buildpack is run. They can therefore not be involved in the build process itself.

However, it is not uncommon for there to exist files in the repo that are necessary for the build, but are not required at runtime. There may also be installable build dependencies that are not runtime dependencies.

Use cases include:

  • Large installation of node modules, all of which are used only for building the production assets, but then remain part of the slug.
  • Test and spec folders in Gem dependencies stored in vendor/bundle

Usage

You will need to use the heroku-buildpack-multi buildpack, and add your existing buildpack(s) to the .buildpacks file in your application repository. The post-build-clean buildpack must be last in the buildpack order:

# .buildpacks
https://github.com/heroku/heroku-buildpack-nodejs
https://github.com/heroku/heroku-buildpack-ruby
https://github.com/Lostmyname/heroku-post-build-clean-buildpack

The .slug-post-clean file supports file globs (including file/directory names with whitespace, but NOT new lines) e.g.:

vendor/bundle/ruby/*/gems/sass-*/test
some_huge_file.psd
some/nested/directory
why_does_this_app_even_contain_a.tiff

About

Buildpack to remove unwanted files from the slug post-build

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%