pack
makes it easy for
- Application developers to use Cloud Native Buildpacks to convert code into runnable images
- Buildpack authors to develop and package buildpacks for distribution
To build pack:
$ make build
This will output the binary to the directory out
.
Set the PACK_BIN
environment variable prior to running to change the name or location of the binary within out
.
Default is pack
.
Set the PACK_VERSION
environment variable to tell pack
what version to consider itself. Default is dev
.
This project uses go modules
To run unit and integration tests:
$ make unit
To run acceptance tests:
$ make acceptance
Alternately, to run all tests:
$ make test