forked from cybercongress/go-cyber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
101 lines (77 loc) · 3.72 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
###############################################################################
# Build cyber
###############################################################################
FROM nvidia/cuda:10.0-devel-ubuntu18.04 as build_stage_cuda
ENV GO_VERSION 1.13.1
ENV GO_ARCH 'linux-amd64'
ENV GO_BIN_SHA '94f874037b82ea5353f4061e543681a0e79657f787437974214629af8407d124'
# Install required dev tools to compile cyberd
###############################################################################
RUN apt-get update && apt-get install -y --no-install-recommends wget git
# Install golang
###############################################################################
RUN url="https://golang.org/dl/go${GO_VERSION}.${GO_ARCH}.tar.gz" && \
wget -O go.tgz "$url" && \
echo "${GO_BIN_SHA} *go.tgz" | sha256sum -c - && \
tar -C /usr/local -xzf go.tgz &&\
rm go.tgz
ENV PATH="/usr/local/go/bin:$PATH"
RUN go version && nvcc --version
# Compile cuda kernel
###############################################################################
COPY . /sources
WORKDIR /sources/x/rank/cuda
RUN make build
RUN cp ./build/libcbdrank.so /usr/lib/ && cp cbdrank.h /usr/lib/
# Compile cyberd
###############################################################################
WORKDIR /sources
RUN make build
###############################################################################
# Build go-cosmwasm
###############################################################################
FROM rustlang/rust:nightly as build_stage_rust
# Install build dependencies
###############################################################################
RUN apt-get update
RUN apt install -y clang gcc g++ zlib1g-dev libmpc-dev libmpfr-dev libgmp-dev
RUN apt install -y build-essential cmake git
# Install repository
###############################################################################
RUN git clone https://github.com/confio/go-cosmwasm sources
# Compile go-cosmwasm
###############################################################################
WORKDIR /sources
RUN make build-rust-release
###############################################################################
# Create runtime cyber image
###############################################################################
FROM nvidia/cuda:10.0-runtime-ubuntu18.04
# Install useful dev tools
###############################################################################
RUN apt-get update && apt-get install -y --no-install-recommends wget curl
# Download genesis file and links file from IPFS
###############################################################################
# To slow using ipget, currently we use gateway
# PUT needed CID_OF_GENESIS and CID_OF_CONFIG here
RUN wget -O /genesis.json https://ipfs.io/ipfs/QmZHpLc3H5RMXp3Z4LURNpKgNfXd3NZ8pZLYbjNFPL6T5n
RUN wget -O /config.toml https://ipfs.io/ipfs/QmSEPs57PyaK5envPyJ16jQZ9dwfhDePz6fmG4WaLWFVts
WORKDIR /
# Copy compiled kernel and binaries
###############################################################################
COPY --from=build_stage_cuda /sources/build/cyberd /usr/bin/cyberd
COPY --from=build_stage_cuda /sources/build/cyberdcli /usr/bin/cyberdcli
COPY --from=build_stage_cuda /usr/lib/cbdrank.h /usr/lib/cbdrank.h
COPY --from=build_stage_cuda /usr/lib/libcbdrank.so /usr/lib/libcbdrank.so
COPY --from=build_stage_rust /sources/api/libgo_cosmwasm.so /usr/lib/libgo_cosmwasm.so
# Copy startup scripts
###############################################################################
COPY start_script.sh start_script.sh
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x start_script.sh
RUN chmod +x /entrypoint.sh
# Start
###############################################################################
EXPOSE 26656 26657
ENTRYPOINT ["/entrypoint.sh"]
CMD ["./start_script.sh"]