1 | # |
---|
2 | # Base: Ubuntu 18.04 with updates and external packages |
---|
3 | # |
---|
4 | FROM ubuntu:bionic-20201119 AS base |
---|
5 | ARG DEBIAN_FRONTEND=noninteractive |
---|
6 | ARG BUILD_DEPS=" \ |
---|
7 | dirmngr \ |
---|
8 | gpg-agent \ |
---|
9 | software-properties-common \ |
---|
10 | " |
---|
11 | ARG RUN_DEPS=" \ |
---|
12 | libcurl3-gnutls \ |
---|
13 | libfcgi \ |
---|
14 | libmapserver-dev \ |
---|
15 | libmozjs185-dev \ |
---|
16 | \ |
---|
17 | saga \ |
---|
18 | libsaga-api-7.3.0 \ |
---|
19 | libotb \ |
---|
20 | otb-bin \ |
---|
21 | \ |
---|
22 | libpq5 \ |
---|
23 | libpython3.6 \ |
---|
24 | libxslt1.1 \ |
---|
25 | gdal-bin \ |
---|
26 | libcgal13 \ |
---|
27 | python3 \ |
---|
28 | r-base \ |
---|
29 | python3-pip\ |
---|
30 | " |
---|
31 | RUN set -ex \ |
---|
32 | && apt-get update && apt-get install -y --no-install-recommends $BUILD_DEPS \ |
---|
33 | \ |
---|
34 | && add-apt-repository ppa:osgeolive/nightly \ |
---|
35 | && add-apt-repository ppa:ubuntugis/ppa \ |
---|
36 | && apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9 \ |
---|
37 | && add-apt-repository 'deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/' \ |
---|
38 | \ |
---|
39 | && apt-get install -y $RUN_DEPS \ |
---|
40 | \ |
---|
41 | && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $BUILD_DEPS \ |
---|
42 | && rm -rf /var/lib/apt/lists/* |
---|
43 | |
---|
44 | # |
---|
45 | # builder1: base image with zoo-kernel |
---|
46 | # |
---|
47 | FROM base AS builder1 |
---|
48 | ARG DEBIAN_FRONTEND=noninteractive |
---|
49 | ARG BUILD_DEPS=" \ |
---|
50 | bison \ |
---|
51 | flex \ |
---|
52 | make \ |
---|
53 | autoconf \ |
---|
54 | gcc \ |
---|
55 | gettext-base \ |
---|
56 | \ |
---|
57 | # Comment lines bellow if nor OTB nor SAGA \ |
---|
58 | libotb-dev \ |
---|
59 | otb-qgis \ |
---|
60 | otb-bin-qt \ |
---|
61 | qttools5-dev \ |
---|
62 | qttools5-dev-tools \ |
---|
63 | qtbase5-dev \ |
---|
64 | libqt5opengl5-dev \ |
---|
65 | libtinyxml-dev \ |
---|
66 | libfftw3-dev \ |
---|
67 | cmake \ |
---|
68 | libsaga-dev \ |
---|
69 | # Comment lines before this one if nor OTB nor SAGA \ |
---|
70 | \ |
---|
71 | libfcgi-dev \ |
---|
72 | libgdal-dev \ |
---|
73 | libwxgtk3.0-dev \ |
---|
74 | libjson-c-dev \ |
---|
75 | libssh2-1-dev \ |
---|
76 | libssl-dev \ |
---|
77 | libxml2-dev \ |
---|
78 | libxslt1-dev \ |
---|
79 | python3-dev \ |
---|
80 | uuid-dev \ |
---|
81 | r-base-dev \ |
---|
82 | " |
---|
83 | WORKDIR /zoo-project |
---|
84 | COPY . . |
---|
85 | |
---|
86 | RUN set -ex \ |
---|
87 | && apt-get update && apt-get install -y --no-install-recommends $BUILD_DEPS \ |
---|
88 | \ |
---|
89 | && make -C ./thirds/cgic206 libcgic.a \ |
---|
90 | \ |
---|
91 | && cd ./zoo-project/zoo-kernel \ |
---|
92 | && autoconf \ |
---|
93 | && ./configure --with-python=/usr --with-pyvers=3.6 --with-js=/usr --with-mapserver=/usr --with-ms-version=7 --with-json=/usr --with-r=/usr --with-db-backend --prefix=/usr --with-otb=/usr/ --with-itk=/usr --with-otb-version=6.6 --with-itk-version=4.12 --with-saga=/usr --with-saga-version=7.2 --with-wx-config=/usr/bin/wx-config \ |
---|
94 | && make \ |
---|
95 | && make install \ |
---|
96 | \ |
---|
97 | # TODO: why not copied by 'make'? |
---|
98 | && cp zoo_loader.cgi main.cfg /usr/lib/cgi-bin/ \ |
---|
99 | && cp ../zoo-services/hello-py/cgi-env/* /usr/lib/cgi-bin/ \ |
---|
100 | && cp ../zoo-services/hello-js/cgi-env/* /usr/lib/cgi-bin/ \ |
---|
101 | && cp ../zoo-api/js/* /usr/lib/cgi-bin/ \ |
---|
102 | && cp ../zoo-services/utils/open-api/cgi-env/* /usr/lib/cgi-bin/ \ |
---|
103 | && cp ../zoo-services/hello-py/cgi-env/* /usr/lib/cgi-bin/ \ |
---|
104 | && cp ../zoo-services/hello-js/cgi-env/* /usr/lib/cgi-bin/ \ |
---|
105 | && cp ../zoo-services/hello-r/cgi-env/* /usr/lib/cgi-bin/ \ |
---|
106 | && cp ../zoo-api/js/* /usr/lib/cgi-bin/ \ |
---|
107 | && cp ../zoo-api/r/minimal.r /usr/lib/cgi-bin/ \ |
---|
108 | \ |
---|
109 | && cp oas.cfg /usr/lib/cgi-bin/ \ |
---|
110 | \ |
---|
111 | # TODO: main.cfg is not processed \ |
---|
112 | && prefix=/usr envsubst < main.cfg > /usr/lib/cgi-bin/main.cfg \ |
---|
113 | \ |
---|
114 | #Comment lines below from here if no OTB \ |
---|
115 | && mkdir otb_build \ |
---|
116 | && cd otb_build \ |
---|
117 | && cmake ../../../thirds/otb2zcfg \ |
---|
118 | && make \ |
---|
119 | && mkdir OTB \ |
---|
120 | && cd OTB \ |
---|
121 | && ITK_AUTOLOAD_PATH=/usr/lib/x86_64-linux-gnu/otb/applications/ ../otb2zcfg \ |
---|
122 | && mkdir /usr/lib/cgi-bin/OTB \ |
---|
123 | && cp *zcfg /usr/lib/cgi-bin/OTB \ |
---|
124 | #&& for i in *zcfg; do cp $i /usr/lib/cgi-bin/$i ; j="$(echo $i | sed "s:.zcfg::g")" ; sed "s:$j:OTB_$j:g" -i /usr/lib/cgi-bin/OTB_$i ; done \ |
---|
125 | #Comment lines before this one if no OTB \ |
---|
126 | \ |
---|
127 | #Comment lines below from here if no SAGA \ |
---|
128 | && cd .. \ |
---|
129 | && make -C ../../../thirds/saga2zcfg \ |
---|
130 | && mkdir zcfgs \ |
---|
131 | && cd zcfgs \ |
---|
132 | && dpkg -L saga \ |
---|
133 | && export MODULE_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/saga/ \ |
---|
134 | && export SAGA_MLB=/usr/lib/x86_64-linux-gnu/saga/ \ |
---|
135 | && ln -s /usr/lib/x86_64-linux-gnu/saga/ /usr/lib/saga \ |
---|
136 | && ../../../../thirds/saga2zcfg/saga2zcfg \ |
---|
137 | && mkdir /usr/lib/cgi-bin/SAGA \ |
---|
138 | && ls \ |
---|
139 | && cp -r * /usr/lib/cgi-bin/SAGA \ |
---|
140 | #Remove OTB if not built or SAGA if no SAGA \ |
---|
141 | && for j in OTB SAGA ; do for i in $(find /usr/lib/cgi-bin/$j/ -name "*zcfg"); do sed "s:image/png:image/png\n useMapserver = true\n msClassify = true:g;s:text/xml:text/xml\n useMapserver = true:g;s:mimeType = application/x-ogc-aaigrid:mimeType = application/x-ogc-aaigrid\n </Supported>\n <Supported>\n mimeType = image/png\n useMapserver=true:g" -i $i; done; done \ |
---|
142 | \ |
---|
143 | && cd ../.. \ |
---|
144 | #Comment lines before this one if nor OTB nor SAGA \ |
---|
145 | \ |
---|
146 | && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $BUILD_DEPS \ |
---|
147 | && rm -rf /var/lib/apt/lists/* |
---|
148 | |
---|
149 | # |
---|
150 | # Optional zoo modules build. |
---|
151 | # |
---|
152 | FROM base AS builder2 |
---|
153 | ARG DEBIAN_FRONTEND=noninteractive |
---|
154 | ARG BUILD_DEPS=" \ |
---|
155 | bison \ |
---|
156 | flex \ |
---|
157 | make \ |
---|
158 | autoconf \ |
---|
159 | g++ \ |
---|
160 | gcc \ |
---|
161 | libc-dev \ |
---|
162 | libfcgi-dev \ |
---|
163 | libgdal-dev \ |
---|
164 | libxml2-dev \ |
---|
165 | libxslt1-dev \ |
---|
166 | libcgal-dev \ |
---|
167 | " |
---|
168 | WORKDIR /zoo-project |
---|
169 | COPY ./zoo-project/zoo-services ./zoo-project/zoo-services |
---|
170 | |
---|
171 | # From zoo-kernel |
---|
172 | COPY --from=builder1 /usr/lib/cgi-bin/ /usr/lib/cgi-bin/ |
---|
173 | COPY --from=builder1 /usr/lib/libzoo_service.so.1.8 /usr/lib/libzoo_service.so.1.8 |
---|
174 | COPY --from=builder1 /usr/lib/libzoo_service.so /usr/lib/libzoo_service.so |
---|
175 | COPY --from=builder1 /usr/com/zoo-project/ /usr/com/zoo-project/ |
---|
176 | COPY --from=builder1 /usr/include/zoo/ /usr/include/zoo/ |
---|
177 | |
---|
178 | # Additional files from bulder2 |
---|
179 | COPY --from=builder1 /zoo-project/zoo-project/zoo-kernel/ZOOMakefile.opts /zoo-project/zoo-project/zoo-kernel/ZOOMakefile.opts |
---|
180 | COPY --from=builder1 /zoo-project/zoo-project/zoo-kernel/sqlapi.h /zoo-project/zoo-project/zoo-kernel/sqlapi.h |
---|
181 | COPY --from=builder1 /zoo-project/zoo-project/zoo-kernel/service.h /zoo-project/zoo-project/zoo-kernel/service.h |
---|
182 | COPY --from=builder1 /zoo-project/zoo-project/zoo-kernel/service_internal.h /zoo-project/zoo-project/zoo-kernel/service_internal.h |
---|
183 | COPY --from=builder1 /zoo-project/zoo-project/zoo-kernel/version.h /zoo-project/zoo-project/zoo-kernel/version.h |
---|
184 | |
---|
185 | RUN set -ex \ |
---|
186 | && apt-get update && apt-get install -y --no-install-recommends $BUILD_DEPS \ |
---|
187 | \ |
---|
188 | && cd ./zoo-project/zoo-services/utils/status \ |
---|
189 | && make \ |
---|
190 | && make install \ |
---|
191 | \ |
---|
192 | && cd ../../cgal \ |
---|
193 | && make \ |
---|
194 | && cp cgi-env/* /usr/lib/cgi-bin/ \ |
---|
195 | \ |
---|
196 | && cd .. \ |
---|
197 | && cd ../zoo-services/ogr/base-vect-ops \ |
---|
198 | && make \ |
---|
199 | && cp cgi-env/* /usr/lib/cgi-bin/ \ |
---|
200 | && cd ../.. \ |
---|
201 | \ |
---|
202 | && cd ../zoo-services/gdal/ \ |
---|
203 | && for i in contour dem grid profile translate warp ; do cd $i ; make && cp cgi-env/* /usr/lib/cgi-bin/ ; cd .. ; done \ |
---|
204 | \ |
---|
205 | && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $BUILD_DEPS \ |
---|
206 | && rm -rf /var/lib/apt/lists/* |
---|
207 | |
---|
208 | # |
---|
209 | # Optional zoo demos download. |
---|
210 | # |
---|
211 | FROM base AS demos |
---|
212 | ARG DEBIAN_FRONTEND=noninteractive |
---|
213 | ARG BUILD_DEPS=" \ |
---|
214 | git \ |
---|
215 | \ |
---|
216 | " |
---|
217 | WORKDIR /zoo-project |
---|
218 | |
---|
219 | RUN set -ex \ |
---|
220 | && apt-get update && apt-get install -y --no-install-recommends $BUILD_DEPS \ |
---|
221 | \ |
---|
222 | && git clone https://github.com/ZOO-Project/examples.git \ |
---|
223 | && git clone https://github.com/swagger-api/swagger-ui.git |
---|
224 | |
---|
225 | # |
---|
226 | # Runtime image with apache2. |
---|
227 | # |
---|
228 | FROM base AS runtime |
---|
229 | ARG DEBIAN_FRONTEND=noninteractive |
---|
230 | ARG RUN_DEPS=" \ |
---|
231 | apache2 \ |
---|
232 | curl \ |
---|
233 | cgi-mapserver \ |
---|
234 | mapserver-bin \ |
---|
235 | #Uncomment the line below to add vi editor \ |
---|
236 | #vim \ |
---|
237 | #Uncomment the lines below to add debuging \ |
---|
238 | #valgrind \ |
---|
239 | #gdb \ |
---|
240 | " |
---|
241 | |
---|
242 | # From zoo-kernel |
---|
243 | COPY --from=builder1 /usr/lib/cgi-bin/ /usr/lib/cgi-bin/ |
---|
244 | COPY --from=builder1 /usr/lib/libzoo_service.so.1.8 /usr/lib/libzoo_service.so.1.8 |
---|
245 | COPY --from=builder1 /usr/lib/libzoo_service.so /usr/lib/libzoo_service.so |
---|
246 | COPY --from=builder1 /usr/com/zoo-project/ /usr/com/zoo-project/ |
---|
247 | COPY --from=builder1 /usr/include/zoo/ /usr/include/zoo/ |
---|
248 | |
---|
249 | # From optional zoo modules |
---|
250 | COPY --from=builder2 /usr/lib/cgi-bin/ /usr/lib/cgi-bin/ |
---|
251 | COPY --from=builder2 /usr/com/zoo-project/ /usr/com/zoo-project/ |
---|
252 | |
---|
253 | # From optional zoo demos |
---|
254 | COPY --from=demos /zoo-project/examples/data/ /usr/com/zoo-project/ |
---|
255 | COPY --from=demos /zoo-project/examples/ /var/www/html/ |
---|
256 | COPY --from=demos /zoo-project/swagger-ui /var/www/html/swagger-ui |
---|
257 | |
---|
258 | |
---|
259 | RUN set -ex \ |
---|
260 | && apt-get update && apt-get install -y --no-install-recommends $RUN_DEPS \ |
---|
261 | \ |
---|
262 | && sed "s=https://petstore.swagger.io/v2/swagger.json=http://localhost/ogc-api/api=g" -i /var/www/html/swagger-ui/dist/index.html \ |
---|
263 | && mv /var/www/html/swagger-ui/dist /var/www/html/swagger-ui/oapip \ |
---|
264 | && ln -s /tmp/ /var/www/html/temp \ |
---|
265 | && ln -s /usr/lib/x86_64-linux-gnu/saga/ /usr/lib/saga \ |
---|
266 | && rm -rf /var/lib/apt/lists/* \ |
---|
267 | && pip3 install Cheetah3 redis\ |
---|
268 | && sed "s:AllowOverride None:AllowOverride All:g" -i /etc/apache2/apache2.conf \ |
---|
269 | && mkdir -p /tmp/statusInfos \ |
---|
270 | && chown www-data:www-data -R /tmp/statusInfos /usr/com/zoo-project \ |
---|
271 | && a2enmod cgi rewrite |
---|
272 | |
---|
273 | EXPOSE 80 |
---|
274 | CMD /usr/sbin/apache2ctl -D FOREGROUND |
---|