Skip to content

Commit 0a80756

Browse files
committed
test
Signed-off-by: Boris Glimcher <[email protected]>
1 parent fdb8bbc commit 0a80756

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

Dockerfile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,17 @@ WORKDIR /root
99
RUN dnf install -y git rpm-build diffutils procps-ng pip && dnf clean all
1010

1111
# hadolint ignore=DL3003
12-
RUN git clone https://github.com/spdk/spdk --branch ${TAG} --depth 1 && \
13-
cd spdk && git submodule update --init --depth 1 && scripts/pkgdep.sh --rdma
12+
RUN git clone https://github.com/spdk/spdk --branch ${TAG} --depth 1
13+
# hadolint ignore=DL3003
14+
RUN cd spdk && git submodule update --init --depth 1
15+
# hadolint ignore=DL3003
16+
#RUN cd spdk && scripts/pkgdep.sh --rdma
17+
RUN bash -x /root/spdk/scripts/pkgdep.sh || true
18+
RUN bash -x /root/spdk/scripts/pkgdep/fedora.sh
1419

1520
ENV GRPC_PYTHON_BUILD_EXT_COMPILER_JOBS 8
21+
ENV GRPC_PYTHON_BUILD_SYSTEM_OPENSSL 1
22+
ENV GRPC_PYTHON_BUILD_SYSTEM_ZLIB 1
1623

1724
# hadolint ignore=DL3003
1825
RUN if [ "$(uname -m)" = "aarch64" ]; then \

0 commit comments

Comments
 (0)