From fb53eaa45fd5fc79a9bcebdff800f9f26087731a Mon Sep 17 00:00:00 2001 From: ihsandemir Date: Mon, 14 Dec 2020 16:20:38 +0300 Subject: [PATCH] Added a dnf fix for solving the docker build problem in earlier docker versions. Without this fix current nightly builds fail to build the docker image for 32-bit linux builds. --- docker/hazelcast-fedora-i386.dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker/hazelcast-fedora-i386.dockerfile b/docker/hazelcast-fedora-i386.dockerfile index 27439ed891..89711b7a2b 100644 --- a/docker/hazelcast-fedora-i386.dockerfile +++ b/docker/hazelcast-fedora-i386.dockerfile @@ -1,5 +1,9 @@ FROM fedora:latest +# needed the following line since with earlier docker versions the build gives the following error: +# Error: Transaction test error: +# file /usr/share/gcc-10/python/libstdcxx/__pycache__/__init__.cpython-39.opt-1.pyc from install of libstdc++-10.2.1-9.fc33.i686 conflicts with file from package libstdc++-10.2.1-6.fc33.x86_64 +RUN dnf clean packages RUN dnf groups install -y "Development Tools" RUN dnf install -y gcc-c++ gdb compat-openssl10-devel.i686 cmake valgrind rsync passwd openssh-server ninja-build java-1.8.0-openjdk