forked from trustwallet/wallet-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
67 lines (53 loc) · 1.56 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
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/*
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# 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 rustup default nightly-2024-06-13
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 native
# 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"]