diff --git a/deploy/cephcsi/image/Dockerfile b/deploy/cephcsi/image/Dockerfile index cb93f7f52..c9adc5241 100644 --- a/deploy/cephcsi/image/Dockerfile +++ b/deploy/cephcsi/image/Dockerfile @@ -23,6 +23,11 @@ RUN source /build.env && \ # test if the downloaded version of Golang works (different arch?) RUN ${GOROOT}/bin/go version && ${GOROOT}/bin/go env +# FIXME: Ceph does not need Apache Arrow anymore, some container images may +# still have the repository enabled. Disabling the repository can be removed in +# the future, see https://github.com/ceph/ceph-container/pull/1990 . +RUN dnf config-manager --disable apache-arrow-centos || true + RUN dnf -y install \ librados-devel librbd-devel \ /usr/bin/cc \ diff --git a/scripts/Dockerfile.devel b/scripts/Dockerfile.devel index c74bcd7d5..e7d502426 100644 --- a/scripts/Dockerfile.devel +++ b/scripts/Dockerfile.devel @@ -17,6 +17,11 @@ RUN source /build.env \ && mkdir -p /usr/local/go \ && curl https://storage.googleapis.com/golang/go${GOLANG_VERSION}.linux-${GOARCH}.tar.gz | tar xzf - -C ${GOROOT} --strip-components=1 +# FIXME: Ceph does not need Apache Arrow anymore, some container images may +# still have the repository enabled. Disabling the repository can be removed in +# the future, see https://github.com/ceph/ceph-container/pull/1990 . +RUN dnf config-manager --disable apache-arrow-centos || true + RUN dnf -y install \ git \ make \