-
Notifications
You must be signed in to change notification settings - Fork 24
/
Dockerfile
192 lines (142 loc) · 6.46 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
FROM emscripten/emsdk:2.0.32
ARG USER_ID
ARG GROUP_ID
RUN mkdir -p /install
RUN mkdir -p /install/lib
##################################################################
# git config
##################################################################
RUN git config --global advice.detachedHead false
##################################################################
# xtl
##################################################################
RUN mkdir -p /opt/xtl/build && \
git clone --branch 0.7.2 --depth 1 https://github.com/xtensor-stack/xtl.git /opt/xtl/src
RUN cd /opt/xtl/build && \
emcmake cmake ../src/ -DCMAKE_INSTALL_PREFIX=/install
RUN cd /opt/xtl/build && \
emmake make -j8 install
##################################################################
# nloman json
##################################################################
RUN mkdir -p /opt/nlohmannjson/build && \
git clone --branch v3.9.1 --depth 1 https://github.com/nlohmann/json.git /opt/nlohmannjson/src
RUN cd /opt/nlohmannjson/build && \
emcmake cmake ../src/ -DCMAKE_INSTALL_PREFIX=/install -DJSON_BuildTests=OFF
RUN cd /opt/nlohmannjson/build && \
emmake make -j8 install
##################################################################
# xpropery
##################################################################
RUN mkdir -p /opt/xproperty/build && \
git clone --branch 0.11.0 --depth 1 https://github.com/jupyter-xeus/xproperty.git /opt/xproperty/src
RUN cd /opt/xproperty/build && \
emcmake cmake ../src/ \
-Dxtl_DIR=/install/share/cmake/xtl \
-DCMAKE_INSTALL_PREFIX=/install
RUN cd /opt/xproperty/build && \
emmake make -j8 install
##################################################################
# xeus itself
##################################################################
# ADD "https://www.random.org/cgi-bin/randbyte?nbytes=10&format=h" skipcache
RUN mkdir -p /opt/xeus && \
git clone --branch 2.4.1 --depth 1 https://github.com/jupyter-xeus/xeus.git /opt/xeus
RUN mkdir -p /xeus-build && cd /xeus-build && ls &&\
emcmake cmake /opt/xeus \
-DCMAKE_INSTALL_PREFIX=/install \
-Dnlohmann_json_DIR=/install/lib/cmake/nlohmann_json \
-Dxtl_DIR=/install/share/cmake/xtl \
-DXEUS_EMSCRIPTEN_WASM_BUILD=ON
RUN cd /xeus-build && \
emmake make -j8 install
##################################################################
# xvega
##################################################################
RUN mkdir -p /opt/xvega/build && \
git clone --branch 0.0.10 --depth 1 https://github.com/QuantStack/xvega.git /opt/xvega/src
RUN cd /opt/xvega/build && \
emcmake cmake ../src/ \
-Dxtl_DIR=/install/share/cmake/xtl \
-Dxproperty_DIR=/install/lib/cmake/xproperty \
-Dnlohmann_json_DIR=/install/lib/cmake/nlohmann_json \
-Dxeus_DIR=/install/lib/cmake/xeus \
-DXVEGA_BUILD_SHARED=ON \
-DXVEGA_BUILD_STATIC=ON \
-DCMAKE_INSTALL_PREFIX=/install \
-DCMAKE_CXX_FLAGS="-Oz -flto"
RUN cd /opt/xvega/build && \
emmake make -j8 install
# ADD "https://www.random.org/cgi-bin/randbyte?nbytes=10&format=h" skipcache
##################################################################
# xvega-binings
##################################################################
# RUN mkdir -p /opt/xvega-bindings/build && \
# git clone --branch 0.0.10 --depth 1 https://github.com/jupyter-xeus/xvega-bindings.git /opt/xvega-bindings/src
RUN mkdir -p /opt/xvega-bindings/build && \
git clone -b no_var https://github.com/DerThorsten/xvega-bindings.git /opt/xvega-bindings/src
RUN cd /opt/xvega-bindings/build && \
emcmake cmake ../src/ \
-Dxtl_DIR=/install/share/cmake/xtl \
-Dxvega_DIR=/install/lib/cmake/xvega \
-Dxeus_DIR=/install/lib/cmake/xeus \
-Dxproperty_DIR=/install/lib/cmake/xproperty \
-Dnlohmann_json_DIR=/install/lib/cmake/nlohmann_json \
-Dxeus_DIR=/install/lib/cmake/xeus \
-DCMAKE_INSTALL_PREFIX=/install \
-DCMAKE_CXX_FLAGS="-Oz -flto"
RUN cd /opt/xvega-bindings/build && \
emmake make -j8 install
##################################################################
# tabulate
##################################################################
RUN mkdir -p /opt/tabulate/build && \
git clone --branch v1.4 --depth 1 https://github.com/p-ranav/tabulate.git /opt/tabulate/src
RUN cd /opt/tabulate/build && \
emcmake cmake ../src/ \
-DCMAKE_INSTALL_PREFIX=/install \
-DJSON_BuildTests=OFF
RUN cd /opt/tabulate/build && \
emmake make -j8 install
##################################################################
# sqlitecpp
##################################################################
RUN mkdir -p /opt/sqlitecpp/build && \
git clone --branch 3.1.1 --depth 1 https://github.com/SRombauts/SQLiteCpp.git /opt/sqlitecpp/src
RUN cd /opt/sqlitecpp/build && \
emcmake cmake ../src/ \
-DCMAKE_INSTALL_PREFIX=/install \
-DJSON_BuildTests=OFF\
-DSQLITECPP_USE_STACK_PROTECTION=OFF\
-DCMAKE_CXX_FLAGS="-fno-stack-protector -U_FORTIFY_SOURCE "\
-DCMAKE_C_FLAGS="-fno-stack-protector -U_FORTIFY_SOURCE "
RUN cd /opt/sqlitecpp/build && \
emmake make -j8 install
##################################################################
# xeus-sqlite
##################################################################
ADD "https://www.random.org/cgi-bin/randbyte?nbytes=10&format=h" skipcache
RUN mkdir -p /opt/xeus-sqlite && \
git clone --branch 0.5.2 --depth 1 https://github.com/jupyter-xeus/xeus-sqlite.git /opt/xeus-sqlite
# COPY xeus-sqlite /opt/xeus-sqlite
RUN mkdir -p /xeus-sqlite-build && cd /xeus-sqlite-build && ls && \
emcmake cmake /opt/xeus-sqlite \
-DXSQL_EMSCRIPTEN_WASM_BUILD=ON \
-DCMAKE_INSTALL_PREFIX=/install \
-Dnlohmann_json_DIR=/install/lib/cmake/nlohmann_json \
-Dxtl_DIR=/install/share/cmake/xtl \
-Dxproperty_DIR=/install/lib/cmake/xproperty \
-DSQLite3_LIBRARY=/install/lib/libsqlite3.a\
-DSQLite3_INCLUDE_DIR=/install/include/\
-Dtabulate_DIR=/install/lib/cmake/tabulate\
-DSQLiteCpp_DIR=/install/lib/cmake/SQLiteCpp\
-Dxvega_DIR=/install/lib/cmake/xvega \
-Dxvega-bindings_DIR=/install/lib/cmake/xvega-bindings \
-DXSQL_USE_SHARED_XEUS=OFF\
-DXSQL_BUILD_SHARED=OFF\
-DXSQL_BUILD_STATIC=ON\
-DXSQL_BUILD_XSQLITE_EXECUTABLE=OFF\
-Dxeus_DIR=/install/lib/cmake/xeus \
-DCMAKE_CXX_FLAGS="-Oz -flto"
RUN cd /xeus-sqlite-build && \
emmake make -j8