-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
executable file
·227 lines (206 loc) · 6.25 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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
FROM phusion/baseimage:0.9.19
#ARG SURFD_BLOCKCHAIN=https://example.com/surfd-blockchain.tbz2
ARG SURF_STATIC_BUILD=ON
ENV SURF_STATIC_BUILD ${SURF_STATIC_BUILD}
ENV LANG=en_US.UTF-8
RUN \
apt-get update && \
apt-get install -y \
autoconf \
automake \
autotools-dev \
bsdmainutils \
build-essential \
cmake \
doxygen \
git \
libboost-all-dev \
libreadline-dev \
libssl-dev \
libtool \
ncurses-dev \
pbzip2 \
pkg-config \
python3 \
python3-dev \
python3-jinja2 \
python3-pip \
nginx \
fcgiwrap \
s3cmd \
awscli \
jq \
wget \
gdb \
&& \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
pip3 install gcovr
ADD . /usr/local/src/surfd
RUN \
cd /usr/local/src/surfd && \
git submodule update --init --recursive && \
mkdir build && \
cd build && \
cmake \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SURF_TESTNET=ON \
-DLOW_MEMORY_NODE=OFF \
-DCLEAR_VOTES=ON \
-DSKIP_BY_TX_ID=ON \
.. && \
make -j$(nproc) chain_test test_fixed_string && \
./tests/chain_test && \
./programs/util/test_fixed_string && \
cd /usr/local/src/surfd && \
doxygen && \
programs/build_helpers/check_reflect.py && \
programs/build_helpers/get_config_check.sh && \
rm -rf /usr/local/src/surfd/build
RUN \
cd /usr/local/src/surfd && \
git submodule update --init --recursive && \
mkdir build && \
cd build && \
cmake \
-DCMAKE_BUILD_TYPE=Debug \
-DENABLE_COVERAGE_TESTING=ON \
-DBUILD_SURF_TESTNET=ON \
-DLOW_MEMORY_NODE=OFF \
-DCLEAR_VOTES=ON \
-DSKIP_BY_TX_ID=ON \
-DCHAINBASE_CHECK_LOCKING=OFF \
.. && \
make -j$(nproc) chain_test && \
./tests/chain_test && \
mkdir -p /var/cobertura && \
gcovr --object-directory="../" --root=../ --xml-pretty --gcov-exclude=".*tests.*" --gcov-exclude=".*fc.*" --gcov-exclude=".*app*" --gcov-exclude=".*net*" --gcov-exclude=".*plugins*" --gcov-exclude=".*schema*" --gcov-exclude=".*time*" --gcov-exclude=".*utilities*" --gcov-exclude=".*wallet*" --gcov-exclude=".*programs*" --output="/var/cobertura/coverage.xml" && \
cd /usr/local/src/surfd && \
rm -rf /usr/local/src/surfd/build
RUN \
cd /usr/local/src/surfd && \
git submodule update --init --recursive && \
mkdir build && \
cd build && \
cmake \
-DCMAKE_INSTALL_PREFIX=/usr/local/surfd-default \
-DCMAKE_BUILD_TYPE=Release \
-DLOW_MEMORY_NODE=ON \
-DCLEAR_VOTES=ON \
-DSKIP_BY_TX_ID=OFF \
-DBUILD_SURF_TESTNET=OFF \
-DSURF_STATIC_BUILD=${SURF_STATIC_BUILD} \
.. \
&& \
make -j$(nproc) && \
make install && \
cd .. && \
( /usr/local/surfd-default/bin/surfd --version \
| grep -o '[0-9]*\.[0-9]*\.[0-9]*' \
&& echo '_' \
&& git rev-parse --short HEAD ) \
| sed -e ':a' -e 'N' -e '$!ba' -e 's/\n//g' \
> /etc/surfdversion && \
cat /etc/surfdversion && \
rm -rfv build && \
mkdir build && \
cd build && \
cmake \
-DCMAKE_INSTALL_PREFIX=/usr/local/surfd-full \
-DCMAKE_BUILD_TYPE=Release \
-DLOW_MEMORY_NODE=OFF \
-DCLEAR_VOTES=OFF \
-DSKIP_BY_TX_ID=ON \
-DBUILD_SURF_TESTNET=OFF \
-DSURF_STATIC_BUILD=${SURF_STATIC_BUILD} \
.. \
&& \
make -j$(nproc) && \
make install && \
rm -rf /usr/local/src/surfd
RUN \
apt-get remove -y \
automake \
autotools-dev \
bsdmainutils \
build-essential \
cmake \
doxygen \
dpkg-dev \
git \
libboost-all-dev \
libc6-dev \
libexpat1-dev \
libgcc-5-dev \
libhwloc-dev \
libibverbs-dev \
libicu-dev \
libltdl-dev \
libncurses5-dev \
libnuma-dev \
libopenmpi-dev \
libpython-dev \
libpython2.7-dev \
libreadline-dev \
libreadline6-dev \
libssl-dev \
libstdc++-5-dev \
libtinfo-dev \
libtool \
linux-libc-dev \
m4 \
make \
manpages \
manpages-dev \
mpi-default-dev \
python-dev \
python2.7-dev \
python3-dev \
&& \
apt-get autoremove -y && \
rm -rf \
/var/lib/apt/lists/* \
/tmp/* \
/var/tmp/* \
/var/cache/* \
/usr/include \
/usr/local/include
RUN useradd -s /bin/bash -m -d /var/lib/surfd surfd
RUN mkdir /var/cache/surfd && \
chown surfd:surfd -R /var/cache/surfd
# add blockchain cache to image
#ADD $SURFD_BLOCKCHAIN /var/cache/surfd/blocks.tbz2
ENV HOME /var/lib/surfd
RUN chown surfd:surfd -R /var/lib/surfd
VOLUME ["/var/lib/surfd"]
# rpc service:
EXPOSE 8090
# p2p service:
EXPOSE 2001
# add seednodes from documentation to image
ADD doc/seednodes.txt /etc/surfd/seednodes.txt
# the following adds lots of logging info to stdout
ADD contrib/config-for-docker.ini /etc/surfd/config.ini
ADD contrib/fullnode.config.ini /etc/surfd/fullnode.config.ini
# add normal startup script that starts via sv
ADD contrib/surfd.run /usr/local/bin/surfd-sv-run.sh
RUN chmod +x /usr/local/bin/surfd-sv-run.sh
# add nginx templates
ADD contrib/surfd.nginx.conf /etc/nginx/surfd.nginx.conf
ADD contrib/healthcheck.conf.template /etc/nginx/healthcheck.conf.template
# add PaaS startup script and service script
ADD contrib/startpaassurfd.sh /usr/local/bin/startpaassurfd.sh
ADD contrib/paas-sv-run.sh /usr/local/bin/paas-sv-run.sh
ADD contrib/sync-sv-run.sh /usr/local/bin/sync-sv-run.sh
ADD contrib/healthcheck.sh /usr/local/bin/healthcheck.sh
RUN chmod +x /usr/local/bin/startpaassurfd.sh
RUN chmod +x /usr/local/bin/paas-sv-run.sh
RUN chmod +x /usr/local/bin/sync-sv-run.sh
RUN chmod +x /usr/local/bin/healthcheck.sh
# new entrypoint for all instances
# this enables exitting of the container when the writer node dies
# for PaaS mode (elasticbeanstalk, etc)
# AWS EB Docker requires a non-daemonized entrypoint
ADD contrib/surfdentrypoint.sh /usr/local/bin/surfdentrypoint.sh
RUN chmod +x /usr/local/bin/surfdentrypoint.sh
CMD /usr/local/bin/surfdentrypoint.sh