In the Getting Started tutorial, you used the Paketo builder to build a Node.js app. One of the core pieces to Buildpacks and Builders are Stack Images. Stacks provide the buildpack lifecycle with build-time and run-time environments in the form of images.
A stack
consists of two images:
build image
: the environment in which your app is builtrun image
: the OS layer for your app imageFor more information about stacks
, see buildpacks.io.
The Paketo project releases several stacks. These are:
index.docker.io/paketobuildpacks/build:tiny-cnb
Copied!
index.docker.io/paketobuildpacks/run:tiny-cnb
Copied!
gcr.io/paketo-buildpacks/run:tiny-cnb
Copied!
index.docker.io/paketobuildpacks/build:base-cnb
Copied!
index.docker.io/paketobuildpacks/run:base-cnb
Copied!
gcr.io/paketo-buildpacks/run:base-cnb
Copied!
index.docker.io/paketobuildpacks/build:full-cnb
Copied!
index.docker.io/paketobuildpacks/run:full-cnb
Copied!
gcr.io/paketo-buildpacks/run:full-cnb
Copied!
Last modified: January 12, 2021