1
0
Fork 0

No libdtrace-ctf on el8

master
dump_stack() 2023-05-09 20:16:28 +00:00
parent 5d13843835
commit 70ac88a07f
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 3 additions and 1 deletions

View File

@ -425,7 +425,9 @@ func generateBaseDockerImage(registry string, commands []config.DockerCommand,
d += "RUN yum -y update\n"
d += "RUN yum -y groupinstall 'Development Tools'\n"
d += "RUN yum -y install linux-firmware grubby\n"
d += "RUN yum -y install libdtrace-ctf\n"
if sk.DistroRelease <= "7" {
d += "RUN yum -y install libdtrace-ctf\n"
}
default:
err = fmt.Errorf("%s not yet supported", sk.DistroType.String())
return