pack buildpack new

pack buildpack new

Creates basic scaffolding of a buildpack.

Synopsis

buildpack new generates the basic scaffolding of a buildpack repository. It creates a new directory name in the current directory (or at path, if passed as a flag), and initializes a buildpack.toml, and two executable bash scripts, bin/detect and bin/build.

pack buildpack new <id> [flags]

Examples

pack buildpack new sample/my-buildpack

Options

  -a, --api string       Buildpack API compatibility of the generated buildpack (default "0.8")
  -h, --help             Help for 'new'
  -p, --path string      Path to generate the buildpack
  -s, --stacks strings   Stack(s) this buildpack will be compatible with
                         Repeat for each stack in order, or supply once by comma-separated list (default [io.buildpacks.stacks.bionic])
  -V, --version string   Version of the generated buildpack (default "1.0.0")

Options inherited from parent commands

      --no-color     Disable color output
  -q, --quiet        Show less output
      --timestamps   Enable timestamps in output
  -v, --verbose      Show more output

SEE ALSO