I'm building a dockerfile via kpack without a Dockerfile and everything is working fine. Using the "tiny" builder the image is even slim enough, what I don't understand is how to add external packages. For example I need to install a font, is available in alpine as "FONTX" and I can install it simply in a dockerfile with RUN apk --no-cache add FONTX.
How can I do it with kpack, in particular with kpack cli?
At the moment I create the image with:
kp image save $MYIMAGE --tag MYREGISTRY/MYREPO/MYIMAGE:MYTAG --git $GITURL --git-revision $GIT_COMMIT
I have tried to a blob and call it with --blob during the image building but it is not only ugly but even difficult to maintain. I would prefer something versionable.