From 0a80756ebe23542cf43423bcbe7f40aad8b1ff93 Mon Sep 17 00:00:00 2001 From: Boris Glimcher Date: Fri, 24 Feb 2023 22:31:10 +0200 Subject: [PATCH] test Signed-off-by: Boris Glimcher --- Dockerfile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) 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 \