binctr/examples/cl-k8s/generate.go
Jess Frazelle 1d95b0a02a add cl-k8s
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>

add attributes

Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-03-20 02:50:23 -04:00

18 lines
338 B
Go

// +build ignore
package main
import (
"fmt"
"os"
"github.com/genuinetools/binctr/container"
)
// Pulls an image and saves the binary data in the container package bindata.go.
func main() {
if err := container.EmbedImage("r.j3ss.co/clisp"); err != nil {
fmt.Fprintf(os.Stderr, "embed image failed: %v\n", err)
os.Exit(1)
}
}