Build Function Image via Pack Optional

Local build is recommended if your Kubernetes nodes have limited access to GitHub or Docker Hub.

  1. Install Cloud Native Buildpacks project’s Pack CLI tool

  2. Use pack tool to build your function image at local [1]

    pack build -B openfunction/builder-node:v2-16.13 \    # Builder image, `16` is the latest version   
               -e FUNC_NAME=tryKnative \                  # Default entry point function 
               -p src \                                   # Path of source files to be built
               <image-repo>/<image-name>:<tag>
  3. Push function image to target container repository (e.g. Docker Hub)

    docker push <image-repo>/<image-name>:<tag>

  1. pack tool would download builder image during the build process ↩︎