1
0
Fork 0

Fix deltarpm support for CentOS 8

timestamps
dump_stack() 2020-05-30 12:40:12 +00:00
parent bfae451749
commit bfc6f11a7e
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 6 additions and 1 deletions

View File

@ -202,7 +202,12 @@ func generateBaseDockerImage(registry string, commands []config.DockerCommand,
d += "RUN sed -i 's;installonly_limit=;installonly_limit=100500;' /etc/yum.conf\n"
d += "RUN yum -y update\n"
d += "RUN yum -y groupinstall 'Development Tools'\n"
d += "RUN yum -y install deltarpm\n"
if sk.DistroRelease < "8" {
d += "RUN yum -y install deltarpm\n"
} else {
d += "RUN yum -y install drpm\n"
}
default:
err = fmt.Errorf("%s not yet supported", sk.DistroType.String())
return