From 5a4be05f8c4a2f2be21be429bf0b69947a543675 Mon Sep 17 00:00:00 2001 From: bxq2011hust Date: Thu, 22 Sep 2022 11:05:35 +0800 Subject: [PATCH] update dockerfile --- tools/ci/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/Dockerfile b/tools/ci/Dockerfile index c6413dfd37..3d611bfa28 100755 --- a/tools/ci/Dockerfile +++ b/tools/ci/Dockerfile @@ -18,7 +18,7 @@ RUN apt-get -q update && apt-get install -qy --no-install-recommends \ && rm -rf /var/lib/apt/lists/* RUN git clone https://github.com/FISCO-BCOS/FISCO-BCOS.git && cd FISCO-BCOS \ - && git checkout ${SOURCE} && if [[ "${TARGETARCH}" != "amd64" ]]; then cmake . ;else cmake -DARCH_NATIVE=on .;fi && make -j2 && strip bin/fisco-bcos + && git checkout ${SOURCE} && if [ "${TARGETARCH}" != "amd64" ]; then cmake . ;else cmake -DARCH_NATIVE=on .;fi && make -j2 && strip bin/fisco-bcos FROM ubuntu:20.04 LABEL maintainer service@fisco.com.cn