@@ -62,7 +62,7 @@ RUN set -ex \
62
62
# sfcgal
63
63
ENV SFCGAL_VERSION master
64
64
# current:
65
- # ENV SFCGAL_GIT_HASH 8675662a2725976642d0ecffd4efcfe68e484483
65
+ # ENV SFCGAL_GIT_HASH 9801868bad3f8b97083dce24224fb2346f2f8c1f
66
66
# reverted for the last working version
67
67
ENV SFCGAL_GIT_HASH e1f5cd801f8796ddb442c06c11ce8c30a7eed2c5
68
68
@@ -82,7 +82,7 @@ RUN set -ex \
82
82
83
83
# proj
84
84
ENV PROJ_VERSION master
85
- ENV PROJ_GIT_HASH 1384b90602a6d2d51ed5ca0d2e28c8b4ada47aea
85
+ ENV PROJ_GIT_HASH 4cc46f72bf6943592ce7c55f147a5a51a0a2992b
86
86
87
87
RUN set -ex \
88
88
&& cd /usr/src \
@@ -114,7 +114,7 @@ RUN set -ex \
114
114
115
115
# geos
116
116
ENV GEOS_VERSION master
117
- ENV GEOS_GIT_HASH 848bce44d308a05d082766da21ea5d9db2e79b8e
117
+ ENV GEOS_GIT_HASH 7135b0014e554fa1ec3a35309920c077355a77d0
118
118
119
119
RUN set -ex \
120
120
&& cd /usr/src \
@@ -131,7 +131,7 @@ RUN set -ex \
131
131
132
132
# gdal
133
133
ENV GDAL_VERSION master
134
- ENV GDAL_GIT_HASH 581246a1ccaf62438e20be371f82453c19d54394
134
+ ENV GDAL_GIT_HASH 0592a219d11e8da539f1bc0cc9c4ce8865a08818
135
135
136
136
RUN set -ex \
137
137
&& cd /usr/src \
@@ -209,10 +209,10 @@ RUN set -ex \
209
209
210
210
COPY --from=builder /usr/local /usr/local
211
211
212
- # ENV SFCGAL_GIT_HASH 8675662a2725976642d0ecffd4efcfe68e484483
213
- ENV PROJ_GIT_HASH 1384b90602a6d2d51ed5ca0d2e28c8b4ada47aea
214
- ENV GEOS_GIT_HASH 848bce44d308a05d082766da21ea5d9db2e79b8e
215
- ENV GDAL_GIT_HASH 581246a1ccaf62438e20be371f82453c19d54394
212
+ # ENV SFCGAL_GIT_HASH 9801868bad3f8b97083dce24224fb2346f2f8c1f
213
+ ENV PROJ_GIT_HASH 4cc46f72bf6943592ce7c55f147a5a51a0a2992b
214
+ ENV GEOS_GIT_HASH 7135b0014e554fa1ec3a35309920c077355a77d0
215
+ ENV GDAL_GIT_HASH 0592a219d11e8da539f1bc0cc9c4ce8865a08818
216
216
217
217
# Minimal command line test.
218
218
RUN set -ex \
@@ -230,7 +230,7 @@ RUN ogr2ogr --formats | grep -q "PostgreSQL/PostGIS" && exit 0 \
230
230
231
231
# install postgis
232
232
ENV POSTGIS_VERSION master
233
- ENV POSTGIS_GIT_HASH 2fca9d65ced41fe2cbe36d0f9d05d109b39d70db
233
+ ENV POSTGIS_GIT_HASH d31888c038285d36b460e34773e5dddece27d585
234
234
235
235
RUN set -ex \
236
236
&& apt-get update \
@@ -300,7 +300,6 @@ RUN set -ex \
300
300
autotools-dev \
301
301
bison \
302
302
build-essential \
303
- ca-certificates \
304
303
cmake \
305
304
g++ \
306
305
git \
@@ -327,5 +326,11 @@ RUN set -ex \
327
326
RUN mkdir -p /docker-entrypoint-initdb.d
328
327
COPY ./initdb-postgis.sh /docker-entrypoint-initdb.d/10_postgis.sh
329
328
COPY ./update-postgis.sh /usr/local/bin
330
- RUN cat /_pgis_full_version.txt
331
329
330
+ RUN set -ex \
331
+ # Is the "ca-certificates" package installed? (for accessing remote raster files)
332
+ # https://github.com/postgis/docker-postgis/issues/307
333
+ && dpkg-query -W -f='${Status}' ca-certificates 2>/dev/null | grep -c "ok installed" \
334
+ \
335
+ # list postgresql, postgis version
336
+ && cat /_pgis_full_version.txt
0 commit comments