File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 34
34
NPROC=4 \
35
35
PREFIX=/usr/local \
36
36
GDAL_CONFIG=/usr/local/bin/gdal-config \
37
- LD_LIBRARY_PATH=/usr/local/lib:/usr/local/lib64 \
37
+ LD_LIBRARY_PATH=/usr/local/lib \
38
38
GDAL_DATA=/usr/local/share/gdal
39
39
40
40
# switch to a build directory
@@ -182,12 +182,14 @@ RUN \
182
182
--with-threads=yes \
183
183
--with-curl=${PREFIX}/bin/curl-config \
184
184
--without-python \
185
+ --without-libtool \
185
186
--with-geos=$PREFIX/bin/geos-config \
186
187
--with-hide-internal-symbols=yes \
187
- CFLAGS="-O2 -Os" CXXFLAGS="-O2 -Os -Wl,-rpath=$ORIGIN" ; \
188
+ CFLAGS="-O2 -Os" CXXFLAGS="-O2 -Os" \
189
+ LDFLAGS="-Wl,-rpath,'\$\$ ORIGIN'" ; \
188
190
make -j ${NPROC} install; \
189
191
cd ${BUILD}; rm -rf gdal
190
-
192
+ #
191
193
# Copy shell scripts and config files over
192
194
COPY bin/* /usr/local/bin/
193
195
Original file line number Diff line number Diff line change 1
1
ARG VERSION=latest
2
2
FROM developmentseed/geolambda:${VERSION}
3
3
4
- LABEL maintainer="Matthew Hanson <matt.a.hanson@gmail.com>"
4
+ LABEL maintainer="Development Seed <info@developmentseed.org>"
5
+ LABEL authors="Matthew Hanson <matt.a.hanson@gmail.com>"
5
6
6
7
ARG PYVERSION=3.6.1
7
8
You can’t perform that action at this time.
0 commit comments