Vib (Vanilla Image Builder) creates container images from YAML recipes. A recipe contains modules that install packages, copy files, build source code, and perform other image construction steps.


Usage

To build an image using a recipe, you can use the vib command:

vib build --output Containerfile recipe.yml

This writes a Containerfile that can be built with Docker, Podman, or another
compatible image builder. Use vib test recipe.yml to validate a recipe and
vib compile --runtime docker recipe.yml to generate and build the image in
one command.