zachary-walters ae996cd718 Updated the deprecated ioutil dependency
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.
2023-07-06 10:41:54 -04:00

27 lines
484 B
Go

package docker
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 = runDockerCmd("build", allArgs...)
if err != nil {
return "", err
}
imageId, err := os.ReadFile(iidfile.Name())
if err != nil {
return "", err
}
return string(imageId), nil
}