Skip to content

Commit 34f8447

Browse files
authored
- upgrade pg 15rc2 to 15 (#319)
- remove 13-master - update README, workflow
1 parent 25fa2c1 commit 34f8447

File tree

15 files changed

+25
-419
lines changed

15 files changed

+25
-419
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
make-docker-images:
1616
strategy:
1717
matrix:
18-
postgres: [11, 12, 13, 14, '15rc2']
18+
postgres: [11, 12, 13, 14, 15]
1919
postgis: ['3.3']
2020
variant: [default, alpine]
2121
include:
@@ -26,13 +26,10 @@ jobs:
2626
postgis: '3.2'
2727
variant: alpine
2828

29-
- postgres: 13
30-
postgis: master
31-
variant: default
3229
- postgres: 14
3330
postgis: master
3431
variant: default
35-
- postgres: '15rc2'
32+
- postgres: 15
3633
postgis: master
3734
variant: default
3835

14-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 a0373e762e443e0bf77b6c5968762f9b6b545a9d
85+
ENV PROJ_GIT_HASH e0911174c79bb14e46c4caf45c473c7b96ba56fa
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 b16166c318e83fdb4cc89573f0672c8b40beb5bc
117+
ENV GEOS_GIT_HASH cc667261086d8e5f9906b69f4feaea5112221e92
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 0ee692724c5717a633e9f14314c06b9811ac1618
134+
ENV GDAL_GIT_HASH 89f9b44786f3f443d08a2e930da0076f42a70d0b
135135

136136
RUN set -ex \
137137
&& cd /usr/src \
@@ -210,9 +210,9 @@ RUN set -ex \
210210
COPY --from=builder /usr/local /usr/local
211211

212212
#ENV SFCGAL_GIT_HASH df3c2ccc015d4a85ac672fc307d2c7c324cccca7
213-
ENV PROJ_GIT_HASH a0373e762e443e0bf77b6c5968762f9b6b545a9d
214-
ENV GEOS_GIT_HASH b16166c318e83fdb4cc89573f0672c8b40beb5bc
215-
ENV GDAL_GIT_HASH 0ee692724c5717a633e9f14314c06b9811ac1618
213+
ENV PROJ_GIT_HASH e0911174c79bb14e46c4caf45c473c7b96ba56fa
214+
ENV GEOS_GIT_HASH cc667261086d8e5f9906b69f4feaea5112221e92
215+
ENV GDAL_GIT_HASH 89f9b44786f3f443d08a2e930da0076f42a70d0b
216216

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

231231
# install postgis
232232
ENV POSTGIS_VERSION master
233-
ENV POSTGIS_GIT_HASH c7c8f05d8f397cc92b9f61c76eb19c13939fc1fa
233+
ENV POSTGIS_GIT_HASH 46005ff37fc8ca974e90b4af520b3d6c1c4beca9
234234

235235
RUN set -ex \
236236
&& apt-get update \

15rc2-3.3/Dockerfile renamed to 15-3.3/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM postgres:15rc2-bullseye
1+
FROM postgres:15-bullseye
22

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

15rc2-3.3/alpine/Dockerfile renamed to 15-3.3/alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM postgres:15rc2-alpine3.16
1+
FROM postgres:15-alpine3.16
22

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

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

13-master/Dockerfile renamed to 15-master/Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# "experimental" ; only for testing!
22
# multi-stage dockerfile; minimal docker version >= 17.05
3-
FROM postgres:13-bullseye as builder
3+
FROM postgres:15-bullseye as builder
44

55
LABEL maintainer="PostGIS Project - https://postgis.net"
66

@@ -82,7 +82,7 @@ RUN set -ex \
8282

8383
# proj
8484
ENV PROJ_VERSION master
85-
ENV PROJ_GIT_HASH a0373e762e443e0bf77b6c5968762f9b6b545a9d
85+
ENV PROJ_GIT_HASH e0911174c79bb14e46c4caf45c473c7b96ba56fa
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 b16166c318e83fdb4cc89573f0672c8b40beb5bc
117+
ENV GEOS_GIT_HASH cc667261086d8e5f9906b69f4feaea5112221e92
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 0ee692724c5717a633e9f14314c06b9811ac1618
134+
ENV GDAL_GIT_HASH 89f9b44786f3f443d08a2e930da0076f42a70d0b
135135

136136
RUN set -ex \
137137
&& cd /usr/src \
@@ -178,7 +178,7 @@ RUN set -ex \
178178
&& sfcgal-config --version \
179179
&& pcre-config --version
180180

181-
FROM postgres:13-bullseye
181+
FROM postgres:15-bullseye
182182

183183
RUN set -ex \
184184
&& apt-get update \
@@ -210,9 +210,9 @@ RUN set -ex \
210210
COPY --from=builder /usr/local /usr/local
211211

212212
#ENV SFCGAL_GIT_HASH df3c2ccc015d4a85ac672fc307d2c7c324cccca7
213-
ENV PROJ_GIT_HASH a0373e762e443e0bf77b6c5968762f9b6b545a9d
214-
ENV GEOS_GIT_HASH b16166c318e83fdb4cc89573f0672c8b40beb5bc
215-
ENV GDAL_GIT_HASH 0ee692724c5717a633e9f14314c06b9811ac1618
213+
ENV PROJ_GIT_HASH e0911174c79bb14e46c4caf45c473c7b96ba56fa
214+
ENV GEOS_GIT_HASH cc667261086d8e5f9906b69f4feaea5112221e92
215+
ENV GDAL_GIT_HASH 89f9b44786f3f443d08a2e930da0076f42a70d0b
216216

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

231231
# install postgis
232232
ENV POSTGIS_VERSION master
233-
ENV POSTGIS_GIT_HASH c7c8f05d8f397cc92b9f61c76eb19c13939fc1fa
233+
ENV POSTGIS_GIT_HASH 46005ff37fc8ca974e90b4af520b3d6c1c4beca9
234234

235235
RUN set -ex \
236236
&& apt-get update \
File renamed without changes.

0 commit comments

Comments
 (0)