-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7d2ae78
commit 07b1672
Showing
5 changed files
with
51 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM fiscoorg/wedpr-component-vcpkg-cache:v3.0.0 as builder | ||
FROM ubuntu:22.04 as builder | ||
|
||
LABEL [email protected] | ||
|
||
|
@@ -8,16 +8,31 @@ ARG SOURCE_BRANCH | |
ENV DEBIAN_FRONTEND=noninteractive \ | ||
SOURCE=${SOURCE_BRANCH:-main} | ||
|
||
# free the diskspace | ||
RUN rm -rf /vcpkg/buildtrees/*/*dbg && rm -rf /vcpkg/buildtrees/*/*src | ||
# Note: depends on python3; default jdk for jni | ||
RUN apt-get -q update && apt-get install -qy --no-install-recommends \ | ||
vim curl lcov git make nasm build-essential cmake wget libtool ca-certificates python3.11 python3-dev \ | ||
libgmp-dev flex bison patch libzstd-dev unzip ninja-build pkg-config zip tar ccache uuid-runtime automake autoconf \ | ||
m4 tcpdump net-tools gcc g++ default-jdk \ | ||
&& ln -fs /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \ | ||
&& apt-get install -qy --no-install-recommends tzdata \ | ||
&& dpkg-reconfigure --frontend noninteractive tzdata \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# install rust | ||
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y | ||
|
||
ENV PATH="/root/.cargo/bin:${PATH}" | ||
|
||
ENV VCPKG_FORCE_SYSTEM_BINARIES=1 | ||
|
||
RUN git clone https://github.com/WeBankBlockchain/WeDPR-Component --recursive --depth=1 -b ${SOURCE} | ||
|
||
RUN git clone https://github.com/WeBankBlockchain/WeDPR-Component --recursive --depth=1 -b ${SOURCE} \ | ||
# ln the cached vcpkg and compile | ||
RUN cd WeDPR-Component/cpp && rm -rf vcpkg && ln -s /vcpkg \ | ||
RUN cd WeDPR-Component/cpp \ | ||
&& mkdir -p build && cd build \ | ||
&& cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_STATIC=ON \ | ||
&& make -j8 | ||
|
||
FROM ubuntu:22.04 as wedpr-gateway-service | ||
LABEL [email protected] | ||
|
||
|