The ioutil package has been deprecated as of Go v1.16: https://go.dev/doc/go1.16#ioutil This commit replaces ioutil functions with their respective io/os functions.
29 lines
508 B
Go
29 lines
508 B
Go
// +build linux darwin
|
|
|
|
package podman
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func buildImageFromCli(buildArgs []string) (string, error) {
|
|
iidfile, err := os.CreateTemp("/tmp", "dive.*.iid")
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
defer os.Remove(iidfile.Name())
|
|
|
|
allArgs := append([]string{"--iidfile", iidfile.Name()}, buildArgs...)
|
|
err = runPodmanCmd("build", allArgs...)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
imageId, err := os.ReadFile(iidfile.Name())
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return string(imageId), nil
|
|
}
|