mirror of https://github.com/ceph/go-ceph
Dockerfile: Avoid conflict with curl-minimal package
With CentOS Stream 8 reaching end of builds phase most of our ceph images are migrating their bases to CentOS Stream 9. Since they come with curl by default in a minimal rpm package we switch to attempt the install by directly linking the binary than the package name. This is due to the conflict between curl and curl-minimal packages in CentOS Stream 9 images. Signed-off-by: Anoop C S <anoopcs@cryptolab.net>
This commit is contained in:
parent
96aac32a34
commit
26ac6fa291
|
@ -14,7 +14,7 @@ RUN true && \
|
|||
yum update -y --disablerepo=ganesha && \
|
||||
cv="$(rpm -q --queryformat '%{version}-%{release}' ceph-common)" && \
|
||||
yum install -y \
|
||||
git wget curl make \
|
||||
git wget /usr/bin/curl make \
|
||||
/usr/bin/cc /usr/bin/c++ \
|
||||
"libcephfs-devel-${cv}" "librados-devel-${cv}" "librbd-devel-${cv}" \
|
||||
gdb libcephfs2-debuginfo librados2-debuginfo librbd1-debuginfo && \
|
||||
|
|
Loading…
Reference in New Issue