diff --git a/Dockerfile b/Dockerfile index a683f98..fb37f19 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,10 +9,17 @@ WORKDIR /root RUN dnf install -y git rpm-build diffutils procps-ng pip && dnf clean all # hadolint ignore=DL3003 -RUN git clone https://github.com/spdk/spdk --branch ${TAG} --depth 1 && \ - cd spdk && git submodule update --init --depth 1 && scripts/pkgdep.sh --rdma +RUN git clone https://github.com/spdk/spdk --branch ${TAG} --depth 1 +# hadolint ignore=DL3003 +RUN cd spdk && git submodule update --init --depth 1 +# hadolint ignore=DL3003 +#RUN cd spdk && scripts/pkgdep.sh --rdma +RUN bash -x /root/spdk/scripts/pkgdep.sh || true +RUN bash -x /root/spdk/scripts/pkgdep/fedora.sh ENV GRPC_PYTHON_BUILD_EXT_COMPILER_JOBS 8 +ENV GRPC_PYTHON_BUILD_SYSTEM_OPENSSL 1 +ENV GRPC_PYTHON_BUILD_SYSTEM_ZLIB 1 # hadolint ignore=DL3003 RUN if [ "$(uname -m)" = "aarch64" ]; then \