Skip to content

Commit 969ef8a

Browse files
authored
add 15beta2-3.2 and upgrade postgis 3.2.2 (#306)
1 parent be3c7bf commit 969ef8a

File tree

21 files changed

+307
-50
lines changed

21 files changed

+307
-50
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
make-docker-images:
1616
strategy:
1717
matrix:
18-
postgres: [10, 11, 12, 13, 14]
18+
postgres: [10, 11, 12, 13, 14, 15beta2]
1919
postgis: ['2.5', '3.2']
2020
variant: [default, alpine]
2121
exclude:
@@ -25,6 +25,8 @@ jobs:
2525
postgis: '2.5'
2626
- postgres: 14
2727
postgis: '2.5'
28+
- postgres: 15beta2
29+
postgis: '2.5'
2830
include:
2931
- postgres: 13
3032
postgis: master

10-3.2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM postgres:10-bullseye
33
LABEL maintainer="PostGIS Project - https://postgis.net"
44

55
ENV POSTGIS_MAJOR 3
6-
ENV POSTGIS_VERSION 3.2.1+dfsg-1.pgdg110+1
6+
ENV POSTGIS_VERSION 3.2.2+dfsg-1.pgdg110+1
77

88
RUN apt-get update \
99
&& apt-cache showpkg postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR \

10-3.2/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM postgres:10-alpine3.16
22

33
LABEL maintainer="PostGIS Project - https://postgis.net"
44

5-
ENV POSTGIS_VERSION 3.2.1
6-
ENV POSTGIS_SHA256 1e9cc4c4f390e4c3be4f5c125a72f39dfa847412332952429952cbd731ac9ba3
5+
ENV POSTGIS_VERSION 3.2.2
6+
ENV POSTGIS_SHA256 160685951b87ca07adf887fa25836f995ca41f269e75f14c2139334a52a16a9b
77

88
RUN set -eux \
99
\

11-3.2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM postgres:11-bullseye
33
LABEL maintainer="PostGIS Project - https://postgis.net"
44

55
ENV POSTGIS_MAJOR 3
6-
ENV POSTGIS_VERSION 3.2.1+dfsg-1.pgdg110+1
6+
ENV POSTGIS_VERSION 3.2.2+dfsg-1.pgdg110+1
77

88
RUN apt-get update \
99
&& apt-cache showpkg postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR \

11-3.2/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM postgres:11-alpine3.16
22

33
LABEL maintainer="PostGIS Project - https://postgis.net"
44

5-
ENV POSTGIS_VERSION 3.2.1
6-
ENV POSTGIS_SHA256 1e9cc4c4f390e4c3be4f5c125a72f39dfa847412332952429952cbd731ac9ba3
5+
ENV POSTGIS_VERSION 3.2.2
6+
ENV POSTGIS_SHA256 160685951b87ca07adf887fa25836f995ca41f269e75f14c2139334a52a16a9b
77

88
RUN set -eux \
99
\

12-3.2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM postgres:12-bullseye
33
LABEL maintainer="PostGIS Project - https://postgis.net"
44

55
ENV POSTGIS_MAJOR 3
6-
ENV POSTGIS_VERSION 3.2.1+dfsg-1.pgdg110+1
6+
ENV POSTGIS_VERSION 3.2.2+dfsg-1.pgdg110+1
77

88
RUN apt-get update \
99
&& apt-cache showpkg postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR \

12-3.2/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM postgres:12-alpine3.16
22

33
LABEL maintainer="PostGIS Project - https://postgis.net"
44

5-
ENV POSTGIS_VERSION 3.2.1
6-
ENV POSTGIS_SHA256 1e9cc4c4f390e4c3be4f5c125a72f39dfa847412332952429952cbd731ac9ba3
5+
ENV POSTGIS_VERSION 3.2.2
6+
ENV POSTGIS_SHA256 160685951b87ca07adf887fa25836f995ca41f269e75f14c2139334a52a16a9b
77

88
RUN set -eux \
99
\

13-3.2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM postgres:13-bullseye
33
LABEL maintainer="PostGIS Project - https://postgis.net"
44

55
ENV POSTGIS_MAJOR 3
6-
ENV POSTGIS_VERSION 3.2.1+dfsg-1.pgdg110+1
6+
ENV POSTGIS_VERSION 3.2.2+dfsg-1.pgdg110+1
77

88
RUN apt-get update \
99
&& apt-cache showpkg postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR \

13-3.2/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ FROM postgres:13-alpine3.16
22

33
LABEL maintainer="PostGIS Project - https://postgis.net"
44

5-
ENV POSTGIS_VERSION 3.2.1
6-
ENV POSTGIS_SHA256 1e9cc4c4f390e4c3be4f5c125a72f39dfa847412332952429952cbd731ac9ba3
5+
ENV POSTGIS_VERSION 3.2.2
6+
ENV POSTGIS_SHA256 160685951b87ca07adf887fa25836f995ca41f269e75f14c2139334a52a16a9b
77

88
RUN set -eux \
99
\

13-master/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ RUN set -ex \
8282

8383
# proj
8484
ENV PROJ_VERSION master
85-
ENV PROJ_GIT_HASH 2d8cf765765ac0499d2b4cccabfce55c33c9bafb
85+
ENV PROJ_GIT_HASH 398649d9e765bdd58647a35d805370a7edbb47a8
8686

8787
RUN set -ex \
8888
&& cd /usr/src \
@@ -114,7 +114,7 @@ RUN set -ex \
114114

115115
# geos
116116
ENV GEOS_VERSION master
117-
ENV GEOS_GIT_HASH e3abcc8fc0f60035c7d8bda65e2417873f6da872
117+
ENV GEOS_GIT_HASH ae1b4b792a8418ff4e3f349022d8fe8adebc80b5
118118

119119
RUN set -ex \
120120
&& cd /usr/src \
@@ -131,7 +131,7 @@ RUN set -ex \
131131

132132
# gdal
133133
ENV GDAL_VERSION master
134-
ENV GDAL_GIT_HASH 0b1e20dd2d31d656330aeec983f1e8f433332f77
134+
ENV GDAL_GIT_HASH bc69439b943d06c4acd0a45801bb3d5092641aef
135135

136136
RUN set -ex \
137137
&& cd /usr/src \
@@ -197,9 +197,9 @@ RUN set -ex \
197197
COPY --from=builder /usr/local /usr/local
198198

199199
#ENV SFCGAL_GIT_HASH 8675662a2725976642d0ecffd4efcfe68e484483
200-
ENV PROJ_GIT_HASH 2d8cf765765ac0499d2b4cccabfce55c33c9bafb
201-
ENV GEOS_GIT_HASH e3abcc8fc0f60035c7d8bda65e2417873f6da872
202-
ENV GDAL_GIT_HASH 0b1e20dd2d31d656330aeec983f1e8f433332f77
200+
ENV PROJ_GIT_HASH 398649d9e765bdd58647a35d805370a7edbb47a8
201+
ENV GEOS_GIT_HASH ae1b4b792a8418ff4e3f349022d8fe8adebc80b5
202+
ENV GDAL_GIT_HASH bc69439b943d06c4acd0a45801bb3d5092641aef
203203

204204
# Minimal command line test.
205205
RUN set -ex \
@@ -217,7 +217,7 @@ RUN ogr2ogr --formats | grep -q "PostgreSQL/PostGIS" && exit 0 \
217217

218218
# install postgis
219219
ENV POSTGIS_VERSION master
220-
ENV POSTGIS_GIT_HASH a31a43a7a74ad8f5c22b165c3c92bfd2f9ad92f7
220+
ENV POSTGIS_GIT_HASH b9f1e10befad02207cf87b46ef3f85591e25ee4c
221221

222222
RUN set -ex \
223223
&& apt-get update \

0 commit comments

Comments
 (0)