-
Notifications
You must be signed in to change notification settings - Fork 8
/
Dockerfile
169 lines (131 loc) · 5.76 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
FROM emscripten/emsdk:3.1.2
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
##################################################################
# lua
##################################################################
RUN git clone --branch 0.1.0 --depth 1 https://github.com/DerThorsten/wasm_lua /opt/wasm_lua
RUN cd /opt/wasm_lua && \
emmake make -j8
##################################################################
# 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
##################################################################
RUN mkdir -p /opt/xeus/build
RUN git clone --branch 3.0.2 --depth 1 https://github.com/jupyter-xeus/xeus.git /opt/xeus/src
# COPY xeus /opt/xeus
RUN cd /opt/xeus/build && \
emcmake cmake ../src \
-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 /opt/xeus/build && \
emmake make -j8 install
##################################################################
# xeus-lite
##################################################################
RUN mkdir -p /opt/xeus-lite/build
RUN git clone --branch 1.0.1 --depth 1 https://github.com/jupyter-xeus/xeus-lite.git /opt/xeus-lite/src
RUN cd /opt/xeus-lite/build && \
emcmake cmake ../src \
-DCMAKE_INSTALL_PREFIX=/install \
-Dnlohmann_json_DIR=/install/lib/cmake/nlohmann_json \
-Dxtl_DIR=/install/share/cmake/xtl \
-Dxeus_DIR=/install/lib/cmake/xeus
RUN cd /opt/xeus-lite/build && \
emmake make -j8 install
##################################################################
# xwidgets
##################################################################
RUN mkdir -p /opt/xwidgets/build && \
git clone --branch 0.27.1 --depth 1 https://github.com/jupyter-xeus/xwidgets.git /opt/xwidgets/src
RUN cd /opt/xwidgets/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 \
-DXWIDGETS_BUILD_SHARED_LIBS=OFF \
-DXWIDGETS_BUILD_STATIC_LIBS=ON \
-DCMAKE_INSTALL_PREFIX=/install \
-DCMAKE_CXX_FLAGS="-Oz -flto"
RUN cd /opt/xwidgets/build && \
emmake make -j8 install
##################################################################
# xcanvas
##################################################################
RUN mkdir -p /opt/xcanvas/build
RUN git clone --branch 0.4.1 --depth 1 https://github.com/jupyter-xeus/xcanvas.git /opt/xcanvas/src
RUN cd /opt/xcanvas/build && \
emcmake cmake ../src \
-DCMAKE_INSTALL_PREFIX=/install \
-Dnlohmann_json_DIR=/install/lib/cmake/nlohmann_json \
-Dxtl_DIR=/install/share/cmake/xtl \
-Dxproperty_DIR=/install/lib/cmake/xproperty \
-Dxwidgets_DIR=/install/lib/cmake/xwidgets \
-DXCANVAS_BUILD_SHARED_LIBS=OFF \
-DXCANVAS_BUILD_STATIC_LIBS=ON \
-Dxeus_DIR=/install/lib/cmake/xeus \
-DCMAKE_CXX_FLAGS="-Oz -flto"
RUN cd /opt/xcanvas/build && \
emmake make -j8 install
##################################################################
# xeus-lua
##################################################################
RUN mkdir -p /opt/xeus-lua/build
RUN git clone --branch 0.7.1 --depth 1 https://github.com/jupyter-xeus/xeus-lua.git /opt/xeus-lua/src
RUN cd /opt/xeus-lua/build && \
emcmake cmake ../src \
-DXEUS_LUA_EMSCRIPTEN_WASM_BUILD=ON \
-DCMAKE_INSTALL_PREFIX=/install \
-Dnlohmann_json_DIR=/install/lib/cmake/nlohmann_json \
-Dxtl_DIR=/install/share/cmake/xtl \
-Dxeus_DIR=/install/lib/cmake/xeus \
-Dxeus-lite_DIR=/install/lib/cmake/xeus-lite \
-Dxproperty_DIR=/install/lib/cmake/xproperty \
-Dxwidgets_DIR=/install/lib/cmake/xwidgets \
-Dxcanvas_DIR=/install/lib/cmake/xcanvas \
-DXLUA_WITH_XWIDGETS=ON\
-DXLUA_WITH_XCANVAS=ON\
-DXLUA_USE_SHARED_XWIDGETS=OFF\
-DXLUA_USE_SHARED_XCANVAS=OFF\
-DLUA_INCLUDE_DIR=/opt/wasm_lua/lua-5.3.4/src \
-DLUA_LIBRARY=/opt/wasm_lua/lua-5.3.4/src/liblua.a \
-DCMAKE_CXX_FLAGS="-Oz -flto"
RUN cd /opt/xeus-lua/build && \
emmake make -j8