1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
package main
import (
"context"
"errors"
"fmt"
"os"
"path/filepath"
"github.com/containers/buildah"
"github.com/containers/buildah/define"
"github.com/containers/buildah/imagebuildah"
"github.com/containers/storage"
"github.com/containers/storage/pkg/unshare"
specs "github.com/opencontainers/runtime-spec/specs-go"
)
func main() {
if buildah.InitReexec() {
return
}
unshare.MaybeReexecUsingUserNamespace(false)
buildStoreOptions, err := storage.DefaultStoreOptions()
if err != nil {
panic(err)
}
buildStore, err := storage.GetStore(buildStoreOptions)
if err != nil {
panic(err)
}
defer func() {
if _, err := buildStore.Shutdown(false); err != nil {
if !errors.Is(err, storage.ErrLayerUsedByContainer) {
fmt.Printf("failed to shutdown storage: %q", err)
}
}
}()
d, err := os.MkdirTemp("", "")
if err != nil {
panic(err)
}
defer os.RemoveAll(d)
dockerfile := filepath.Join(d, "Dockerfile")
f, err := os.Create(dockerfile)
if err != nil {
panic(err)
}
fmt.Fprintf(f, "FROM quay.io/libpod/alpine\nRUN echo CUT START; find /sys/fs/cgroup -print | sort ; echo CUT END")
f.Close()
buildOptions := define.BuildOptions{
ContextDirectory: d,
NamespaceOptions: []define.NamespaceOption{
{Name: string(specs.NetworkNamespace), Host: true},
},
}
_, _, err = imagebuildah.BuildDockerfiles(context.TODO(), buildStore, buildOptions, dockerfile)
if err != nil {
panic(err)
}
}
|