1.

Define source-to-image strategy.

Answer»

S2I stands for source-to-image, and it's a tool for creating repeatable container images. By injecting the APPLICATION source into a container image and building a new image, it creates ready-to-run images. The new image contains the base image, the BUILDER, and the CONSTRUCTED source, and is ready to execute with the buildah run command. S2I allows you to create INCREMENTAL BUILDS that reuse previously downloaded dependencies, generated artefacts, and so on. Source-to-image (S2I) builds can be incremental, which implies it reuses artefacts from prior builds.



Discussion

No Comment Found