Knative + Buildpacks: Source code to container image without Dockerfile
I previously talked about Knative Build and how it enables you to go from source code to a container image in a repository. You can write your Build from scratch or you can rely on many of the BuildTemplates Knative already provides. For example, in my Knative Tutorial, I show how to install Kaniko BuildTemplate and use Kaniko to build container images.
You normally need to write a Dockerfile, so Knative Build (or Kaniko to be more precise) knows how to build the container image.
Read More →