forked from akash-network/cosmos-omnibus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
197 lines (156 loc) · 4.87 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
ARG BUILD_IMAGE=default
ARG BUILD_METHOD=source
ARG GOLANG_VERSION=1.18-buster
ARG BASE_IMAGE=golang:${GOLANG_VERSION}
#
# Default build environment for standard Tendermint chains
#
FROM ${BASE_IMAGE} AS build_base
ARG PROJECT
ARG PROJECT_BIN=$PROJECT
ARG INSTALL_PACKAGES
RUN apt-get update && \
apt-get install --no-install-recommends --assume-yes curl unzip pv ${INSTALL_PACKAGES} && \
apt-get clean
#
# Optional build environment when libwasmvm.so is required
#
FROM build_base AS build_wasmvm
ARG WASMVM_VERSION=v0.16.7
ARG WASMVM_URL=https://raw.githubusercontent.com/CosmWasm/wasmvm/${WASMVM_VERSION}/api/libwasmvm.so
ADD ${WASMVM_URL} /lib/libwasmvm.so
#
# Default build from source method
#
FROM build_base AS build_source
ARG VERSION
ARG REPOSITORY
ARG BUILD_CMD="make install"
ARG BUILD_DIR=/data
RUN git clone $REPOSITORY /data
WORKDIR $BUILD_DIR
RUN git checkout $VERSION
#
# Optional build environment for Starport chains
#
FROM build_source AS build_starport
ARG BUILD_CMD="starport chain build"
RUN curl https://get.starport.network/starport! | bash
#
# Optional build environment for Skip support
#
FROM build_source AS build_skip
# Get MEV_TENDERMINT_VERSION from
# https://raw.githubusercontent.com/skip-mev/config/main/$CHAIN_ID/mev-tendermint_version.txt
ARG MEV_TENDERMINT_VERSION
RUN go mod edit -replace github.com/tendermint/tendermint=github.com/skip-mev/mev-tendermint@$MEV_TENDERMINT_VERSION && \
go mod tidy
#
# Final build environment
# Note optional `BUILD_METHOD` argument controls the base image
#
FROM build_${BUILD_METHOD} AS build
ARG BUILD_PATH=$GOPATH/bin
RUN $BUILD_CMD
RUN ldd $BUILD_PATH/$PROJECT_BIN | tr -s '[:blank:]' '\n' | grep '^/' | \
xargs -I % sh -c 'mkdir -p $(dirname deps%); cp % deps%;'
RUN mv $BUILD_PATH/$PROJECT_BIN /bin/$PROJECT_BIN
#
# Default image
#
FROM debian:buster AS default
ARG PROJECT
ARG PROJECT_BIN=$PROJECT
ARG BUILD_DIR=/data
COPY --from=build /bin/$PROJECT_BIN /bin/$PROJECT_BIN
COPY --from=build $BUILD_DIR/deps/ /
#
# Optional image to install from binary
#
FROM build_base AS binary
ARG BINARY_URL
RUN curl -Lo /bin/$PROJECT_BIN $BINARY_URL
RUN chmod +x /bin/$PROJECT_BIN
#
# Custom image for injective
#
FROM debian:buster AS injective
ARG VERSION
RUN apt-get update && \
apt-get install --no-install-recommends --assume-yes ca-certificates curl unzip && \
apt-get clean
WORKDIR /data
RUN curl -Lo /data/release.zip https://github.com/InjectiveLabs/injective-chain-releases/releases/download/$VERSION/linux-amd64.zip
RUN unzip -oj /data/release.zip
RUN mv injectived /bin
RUN mv libwasmvm.x86_64.so /usr/lib
RUN chmod +x /bin/injectived
#
# ZSTD build
#
FROM gcc:12 AS zstd_build
ARG ZTSD_SOURCE_URL="https://github.com/facebook/zstd/releases/download/v1.5.5/zstd-1.5.5.tar.gz"
RUN apt-get update && \
apt-get install --no-install-recommends --assume-yes python3 ninja-build && \
apt-get clean && \
curl -o /tmp/get-pip.py -L 'https://bootstrap.pypa.io/get-pip.py' && \
python3 /tmp/get-pip.py && \
pip3 install meson && \
mkdir -p /tmp/zstd && \
cd /tmp/zstd && \
curl -Lo zstd.source $ZTSD_SOURCE_URL && \
file zstd.source | grep -q 'gzip compressed data' && mv zstd.source zstd.source.gz && gzip -d zstd.source.gz && \
file zstd.source | grep -q 'tar archive' && mv zstd.source zstd.source.tar && tar -xf zstd.source.tar --strip-components=1 && rm zstd.source.tar && \
LDFLAGS=-static \
meson setup \
-Dbin_programs=true \
-Dstatic_runtime=true \
-Ddefault_library=static \
-Dzlib=disabled -Dlzma=disabled -Dlz4=disabled \
build/meson builddir-st && \
ninja -C builddir-st && \
ninja -C builddir-st install && \
/usr/local/bin/zstd -v
#
# Final Omnibus image
# Note optional `BUILD_IMAGE` argument controls the base image
#
FROM ${BUILD_IMAGE} AS omnibus
LABEL org.opencontainers.image.source https://github.com/akash-network/cosmos-omnibus
RUN apt-get update && \
apt-get install --no-install-recommends --assume-yes ca-certificates curl wget file unzip liblz4-tool gnupg2 jq pv && \
apt-get clean
COPY --from=zstd_build /usr/local/bin/zstd /bin/
ARG PROJECT
ARG PROJECT_BIN
ARG PROJECT_DIR
ARG CONFIG_DIR
ARG START_CMD
ARG INIT_CMD
ARG VERSION
ARG REPOSITORY
ARG NAMESPACE
ENV PROJECT=$PROJECT
ENV PROJECT_BIN=$PROJECT_BIN
ENV PROJECT_DIR=$PROJECT_DIR
ENV CONFIG_DIR=$CONFIG_DIR
ENV START_CMD=$START_CMD
ENV INIT_CMD=$INIT_CMD
ENV VERSION=$VERSION
ENV REPOSITORY=$REPOSITORY
ENV NAMESPACE=$NAMESPACE
ENV MONIKER=my-omnibus-node
EXPOSE 26656 \
26657 \
1317 \
9090 \
8080
# Install AWS
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" \
&& unzip awscliv2.zip -d /usr/src && rm -f awscliv2.zip \
&& /usr/src/aws/install --bin-dir /usr/bin
# Copy scripts
COPY run.sh snapshot.sh /usr/bin/
RUN chmod +x /usr/bin/run.sh /usr/bin/snapshot.sh
ENTRYPOINT ["run.sh"]
CMD $START_CMD