forked from trustwallet/wallet-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
71 lines (56 loc) · 1.84 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
# Install some basics
RUN apt-get update \
&& apt-get install -y \
wget \
curl \
git \
vim \
unzip \
xz-utils \
software-properties-common \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
# Add latest cmake
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc | apt-key add - \
&& apt-add-repository 'deb https://apt.kitware.com/ubuntu/ bionic main'
RUN wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb && dpkg -i ./libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb
# Install required packages for dev
RUN apt-get update \
&& apt-get install -y \
build-essential \
libtool autoconf pkg-config \
ninja-build \
ruby-full \
clang-14 \
llvm-14 \
libc++-dev libc++abi-dev \
cmake \
libboost-all-dev \
ccache \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
ENV CC=/usr/bin/clang-14
ENV CXX=/usr/bin/clang++-14
# Install rust
RUN wget "https://sh.rustup.rs" -O rustup.sh \
&& sh rustup.sh -y
ENV PATH="/root/.cargo/bin:${PATH}"
RUN cargo install --force cbindgen \
&& rustup target add wasm32-unknown-emscripten
# ↑ Setup build environment
# ↓ Build and compile wallet core
COPY . /wallet-core
WORKDIR /wallet-core
# Install dependencies
RUN tools/install-dependencies
# Build: generate files and rust lib
RUN tools/generate-files
# Build: cmake + make wallet core
RUN cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Debug \
&& make -Cbuild -j12 TrustWalletCore
# Build unit tester
RUN make -Cbuild -j12 tests
# Download and Install Go: apt install golang-go
# Build Go sample app: cd samples/go && /usr/local/go/bin/go build -o main && ./main
CMD ["/bin/bash"]