Skip to content

Commit 1cf257e

Browse files
authored
- update cgal to : heads/5.6.x-branch (#348)
- fix github worflow ci warnings - make update ( update *-master versions )
1 parent f49780d commit 1cf257e

File tree

7 files changed

+72
-67
lines changed

7 files changed

+72
-67
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: make test
4848

4949
- name: Login to dockerhub
50-
uses: docker/login-action@v1
50+
uses: docker/login-action@v2
5151
if: ${{ (github.ref == 'refs/heads/master') && (github.event_name != 'pull_request') }}
5252
with:
5353
username: ${{ secrets.DOCKERHUB_USERNAME }}

14-master/Dockerfile

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
# NOTE: THIS DOCKERFILE IS GENERATED VIA "make update"! PLEASE DO NOT EDIT IT DIRECTLY.
33
#
44

5-
# "experimental" ; only for testing! Changes expected!
6-
# multi-stage dockerfile; minimal docker version >= 17.05
5+
# "Experimental"; solely for testing purposes. Anticipate frequent changes!
6+
# This is a multi-stage Dockerfile, requiring a minimum Docker version of 17.05.
77

88
ARG DOCKER_CMAKE_BUILD_TYPE=Release
9+
ARG CGAL_GIT_BRANCH=5.6.x-branch
910
FROM postgres:14-bullseye as builder
1011

1112
LABEL maintainer="PostGIS Project - https://postgis.net" \
@@ -83,17 +84,18 @@ ARG DOCKER_CMAKE_BUILD_TYPE
8384
ENV DOCKER_CMAKE_BUILD_TYPE=${DOCKER_CMAKE_BUILD_TYPE}
8485

8586
# cgal & sfcgal
86-
# By utilizing the latest commit of the CGAL 5.5.x-branch and implementing a header-only build for SFCGAL,
87+
# By utilizing the latest commit of the CGAL 5.x.x-branch and implementing a header-only build for SFCGAL,
8788
# one can benefit from the latest CGAL patches while avoiding compatibility issues.
88-
ENV CGAL_GIT_BRANCH 5.5.x-branch
89-
ENV CGAL55_GIT_HASH 0c17d17f62216319809ed3d259355bc9b35bb12e
89+
ARG CGAL_GIT_BRANCH
90+
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
91+
ENV CGAL5X_GIT_HASH ad130ba0e0603c06c2a3de887c2570b131ed206f
9092
ENV SFCGAL_GIT_HASH ae0a12da1e7a32d163930789e62874ca6ff0792c
9193
RUN set -ex \
9294
&& mkdir -p /usr/src \
9395
&& cd /usr/src \
9496
&& git clone --branch ${CGAL_GIT_BRANCH} https://github.com/CGAL/cgal \
9597
&& cd cgal \
96-
&& git checkout ${CGAL55_GIT_HASH} \
98+
&& git checkout ${CGAL5X_GIT_HASH} \
9799
&& git log -1 > /_pgis_cgal_last_commit.txt \
98100
&& cd /usr/src \
99101
&& git clone https://gitlab.com/Oslandia/SFCGAL.git \
@@ -120,7 +122,7 @@ RUN set -ex \
120122
&& rm -fr /usr/src/cgal
121123

122124
# proj
123-
ENV PROJ_GIT_HASH 4c3b4264056b641de9a6baeb6aabbb69aaacbb09
125+
ENV PROJ_GIT_HASH 7e10ddc628e014c317c18d4bf464ea8947ce082b
124126
RUN set -ex \
125127
&& cd /usr/src \
126128
&& git clone https://github.com/OSGeo/PROJ.git \
@@ -150,7 +152,7 @@ RUN set -ex \
150152
&& rm -fr /usr/src/PROJ
151153

152154
# geos
153-
ENV GEOS_GIT_HASH 335cf85d0a66540bcf4474a00f9f39c1084976b3
155+
ENV GEOS_GIT_HASH afcb31885fb206d2e3093ead943aa320a991370a
154156
RUN set -ex \
155157
&& cd /usr/src \
156158
&& git clone https://github.com/libgeos/geos.git \
@@ -166,7 +168,7 @@ RUN set -ex \
166168
&& rm -fr /usr/src/geos
167169

168170
# gdal
169-
ENV GDAL_GIT_HASH da9dd6dbc6b6b3773c56da87245118ae2120eb9c
171+
ENV GDAL_GIT_HASH 9b77dcc88edf71da468e6e29e26b17df2cf76e5f
170172
RUN set -ex \
171173
&& cd /usr/src \
172174
&& git clone https://github.com/OSGeo/gdal.git \
@@ -297,12 +299,13 @@ RUN set -ex \
297299
COPY --from=builder /_pgis*.* /
298300
COPY --from=builder /usr/local /usr/local
299301

300-
ENV CGAL_GIT_BRANCH 5.5.x-branch
301-
ENV CGAL55_GIT_HASH 0c17d17f62216319809ed3d259355bc9b35bb12e
302+
ARG CGAL_GIT_BRANCH
303+
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
304+
ENV CGAL5X_GIT_HASH ad130ba0e0603c06c2a3de887c2570b131ed206f
302305
ENV SFCGAL_GIT_HASH ae0a12da1e7a32d163930789e62874ca6ff0792c
303-
ENV PROJ_GIT_HASH 4c3b4264056b641de9a6baeb6aabbb69aaacbb09
304-
ENV GEOS_GIT_HASH 335cf85d0a66540bcf4474a00f9f39c1084976b3
305-
ENV GDAL_GIT_HASH da9dd6dbc6b6b3773c56da87245118ae2120eb9c
306+
ENV PROJ_GIT_HASH 7e10ddc628e014c317c18d4bf464ea8947ce082b
307+
ENV GEOS_GIT_HASH afcb31885fb206d2e3093ead943aa320a991370a
308+
ENV GDAL_GIT_HASH 9b77dcc88edf71da468e6e29e26b17df2cf76e5f
306309

307310
# Minimal command line test ( fail fast )
308311
RUN set -ex \
@@ -321,7 +324,7 @@ RUN set -ex \
321324
|| echo "ogr2ogr missing PostgreSQL driver" && exit 1
322325

323326
# install postgis
324-
ENV POSTGIS_GIT_HASH 36fcdd626ba8b888119c8a53c7365ca9e9786f61
327+
ENV POSTGIS_GIT_HASH b0388921dcea093d370fddc45b3259610f34153a
325328

326329
RUN set -ex \
327330
&& apt-get update \
@@ -363,8 +366,6 @@ RUN set -ex \
363366
# configure options taken from:
364367
# https://anonscm.debian.org/cgit/pkg-grass/postgis.git/tree/debian/rules?h=jessie
365368
&& ./configure \
366-
# --with-gui \
367-
--with-pcredir="$(pcre-config --prefix)" \
368369
--enable-lto \
369370
&& make -j$(nproc) \
370371
&& make install \

15-master/Dockerfile

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
# NOTE: THIS DOCKERFILE IS GENERATED VIA "make update"! PLEASE DO NOT EDIT IT DIRECTLY.
33
#
44

5-
# "experimental" ; only for testing! Changes expected!
6-
# multi-stage dockerfile; minimal docker version >= 17.05
5+
# "Experimental"; solely for testing purposes. Anticipate frequent changes!
6+
# This is a multi-stage Dockerfile, requiring a minimum Docker version of 17.05.
77

88
ARG DOCKER_CMAKE_BUILD_TYPE=Release
9+
ARG CGAL_GIT_BRANCH=5.6.x-branch
910
FROM postgres:15-bullseye as builder
1011

1112
LABEL maintainer="PostGIS Project - https://postgis.net" \
@@ -83,17 +84,18 @@ ARG DOCKER_CMAKE_BUILD_TYPE
8384
ENV DOCKER_CMAKE_BUILD_TYPE=${DOCKER_CMAKE_BUILD_TYPE}
8485

8586
# cgal & sfcgal
86-
# By utilizing the latest commit of the CGAL 5.5.x-branch and implementing a header-only build for SFCGAL,
87+
# By utilizing the latest commit of the CGAL 5.x.x-branch and implementing a header-only build for SFCGAL,
8788
# one can benefit from the latest CGAL patches while avoiding compatibility issues.
88-
ENV CGAL_GIT_BRANCH 5.5.x-branch
89-
ENV CGAL55_GIT_HASH 0c17d17f62216319809ed3d259355bc9b35bb12e
89+
ARG CGAL_GIT_BRANCH
90+
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
91+
ENV CGAL5X_GIT_HASH ad130ba0e0603c06c2a3de887c2570b131ed206f
9092
ENV SFCGAL_GIT_HASH ae0a12da1e7a32d163930789e62874ca6ff0792c
9193
RUN set -ex \
9294
&& mkdir -p /usr/src \
9395
&& cd /usr/src \
9496
&& git clone --branch ${CGAL_GIT_BRANCH} https://github.com/CGAL/cgal \
9597
&& cd cgal \
96-
&& git checkout ${CGAL55_GIT_HASH} \
98+
&& git checkout ${CGAL5X_GIT_HASH} \
9799
&& git log -1 > /_pgis_cgal_last_commit.txt \
98100
&& cd /usr/src \
99101
&& git clone https://gitlab.com/Oslandia/SFCGAL.git \
@@ -120,7 +122,7 @@ RUN set -ex \
120122
&& rm -fr /usr/src/cgal
121123

122124
# proj
123-
ENV PROJ_GIT_HASH 4c3b4264056b641de9a6baeb6aabbb69aaacbb09
125+
ENV PROJ_GIT_HASH 7e10ddc628e014c317c18d4bf464ea8947ce082b
124126
RUN set -ex \
125127
&& cd /usr/src \
126128
&& git clone https://github.com/OSGeo/PROJ.git \
@@ -150,7 +152,7 @@ RUN set -ex \
150152
&& rm -fr /usr/src/PROJ
151153

152154
# geos
153-
ENV GEOS_GIT_HASH 335cf85d0a66540bcf4474a00f9f39c1084976b3
155+
ENV GEOS_GIT_HASH afcb31885fb206d2e3093ead943aa320a991370a
154156
RUN set -ex \
155157
&& cd /usr/src \
156158
&& git clone https://github.com/libgeos/geos.git \
@@ -166,7 +168,7 @@ RUN set -ex \
166168
&& rm -fr /usr/src/geos
167169

168170
# gdal
169-
ENV GDAL_GIT_HASH da9dd6dbc6b6b3773c56da87245118ae2120eb9c
171+
ENV GDAL_GIT_HASH 9b77dcc88edf71da468e6e29e26b17df2cf76e5f
170172
RUN set -ex \
171173
&& cd /usr/src \
172174
&& git clone https://github.com/OSGeo/gdal.git \
@@ -297,12 +299,13 @@ RUN set -ex \
297299
COPY --from=builder /_pgis*.* /
298300
COPY --from=builder /usr/local /usr/local
299301

300-
ENV CGAL_GIT_BRANCH 5.5.x-branch
301-
ENV CGAL55_GIT_HASH 0c17d17f62216319809ed3d259355bc9b35bb12e
302+
ARG CGAL_GIT_BRANCH
303+
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
304+
ENV CGAL5X_GIT_HASH ad130ba0e0603c06c2a3de887c2570b131ed206f
302305
ENV SFCGAL_GIT_HASH ae0a12da1e7a32d163930789e62874ca6ff0792c
303-
ENV PROJ_GIT_HASH 4c3b4264056b641de9a6baeb6aabbb69aaacbb09
304-
ENV GEOS_GIT_HASH 335cf85d0a66540bcf4474a00f9f39c1084976b3
305-
ENV GDAL_GIT_HASH da9dd6dbc6b6b3773c56da87245118ae2120eb9c
306+
ENV PROJ_GIT_HASH 7e10ddc628e014c317c18d4bf464ea8947ce082b
307+
ENV GEOS_GIT_HASH afcb31885fb206d2e3093ead943aa320a991370a
308+
ENV GDAL_GIT_HASH 9b77dcc88edf71da468e6e29e26b17df2cf76e5f
306309

307310
# Minimal command line test ( fail fast )
308311
RUN set -ex \
@@ -321,7 +324,7 @@ RUN set -ex \
321324
|| echo "ogr2ogr missing PostgreSQL driver" && exit 1
322325

323326
# install postgis
324-
ENV POSTGIS_GIT_HASH 36fcdd626ba8b888119c8a53c7365ca9e9786f61
327+
ENV POSTGIS_GIT_HASH b0388921dcea093d370fddc45b3259610f34153a
325328

326329
RUN set -ex \
327330
&& apt-get update \
@@ -363,8 +366,6 @@ RUN set -ex \
363366
# configure options taken from:
364367
# https://anonscm.debian.org/cgit/pkg-grass/postgis.git/tree/debian/rules?h=jessie
365368
&& ./configure \
366-
# --with-gui \
367-
--with-pcredir="$(pcre-config --prefix)" \
368369
--enable-lto \
369370
&& make -j$(nproc) \
370371
&& make install \

16beta1-master/Dockerfile

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
# NOTE: THIS DOCKERFILE IS GENERATED VIA "make update"! PLEASE DO NOT EDIT IT DIRECTLY.
33
#
44

5-
# "experimental" ; only for testing! Changes expected!
6-
# multi-stage dockerfile; minimal docker version >= 17.05
5+
# "Experimental"; solely for testing purposes. Anticipate frequent changes!
6+
# This is a multi-stage Dockerfile, requiring a minimum Docker version of 17.05.
77

88
ARG DOCKER_CMAKE_BUILD_TYPE=Release
9+
ARG CGAL_GIT_BRANCH=5.6.x-branch
910
FROM postgres:16beta1-bullseye as builder
1011

1112
LABEL maintainer="PostGIS Project - https://postgis.net" \
@@ -83,17 +84,18 @@ ARG DOCKER_CMAKE_BUILD_TYPE
8384
ENV DOCKER_CMAKE_BUILD_TYPE=${DOCKER_CMAKE_BUILD_TYPE}
8485

8586
# cgal & sfcgal
86-
# By utilizing the latest commit of the CGAL 5.5.x-branch and implementing a header-only build for SFCGAL,
87+
# By utilizing the latest commit of the CGAL 5.x.x-branch and implementing a header-only build for SFCGAL,
8788
# one can benefit from the latest CGAL patches while avoiding compatibility issues.
88-
ENV CGAL_GIT_BRANCH 5.5.x-branch
89-
ENV CGAL55_GIT_HASH 0c17d17f62216319809ed3d259355bc9b35bb12e
89+
ARG CGAL_GIT_BRANCH
90+
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
91+
ENV CGAL5X_GIT_HASH ad130ba0e0603c06c2a3de887c2570b131ed206f
9092
ENV SFCGAL_GIT_HASH ae0a12da1e7a32d163930789e62874ca6ff0792c
9193
RUN set -ex \
9294
&& mkdir -p /usr/src \
9395
&& cd /usr/src \
9496
&& git clone --branch ${CGAL_GIT_BRANCH} https://github.com/CGAL/cgal \
9597
&& cd cgal \
96-
&& git checkout ${CGAL55_GIT_HASH} \
98+
&& git checkout ${CGAL5X_GIT_HASH} \
9799
&& git log -1 > /_pgis_cgal_last_commit.txt \
98100
&& cd /usr/src \
99101
&& git clone https://gitlab.com/Oslandia/SFCGAL.git \
@@ -120,7 +122,7 @@ RUN set -ex \
120122
&& rm -fr /usr/src/cgal
121123

122124
# proj
123-
ENV PROJ_GIT_HASH 4c3b4264056b641de9a6baeb6aabbb69aaacbb09
125+
ENV PROJ_GIT_HASH 7e10ddc628e014c317c18d4bf464ea8947ce082b
124126
RUN set -ex \
125127
&& cd /usr/src \
126128
&& git clone https://github.com/OSGeo/PROJ.git \
@@ -150,7 +152,7 @@ RUN set -ex \
150152
&& rm -fr /usr/src/PROJ
151153

152154
# geos
153-
ENV GEOS_GIT_HASH 335cf85d0a66540bcf4474a00f9f39c1084976b3
155+
ENV GEOS_GIT_HASH afcb31885fb206d2e3093ead943aa320a991370a
154156
RUN set -ex \
155157
&& cd /usr/src \
156158
&& git clone https://github.com/libgeos/geos.git \
@@ -166,7 +168,7 @@ RUN set -ex \
166168
&& rm -fr /usr/src/geos
167169

168170
# gdal
169-
ENV GDAL_GIT_HASH da9dd6dbc6b6b3773c56da87245118ae2120eb9c
171+
ENV GDAL_GIT_HASH 9b77dcc88edf71da468e6e29e26b17df2cf76e5f
170172
RUN set -ex \
171173
&& cd /usr/src \
172174
&& git clone https://github.com/OSGeo/gdal.git \
@@ -297,12 +299,13 @@ RUN set -ex \
297299
COPY --from=builder /_pgis*.* /
298300
COPY --from=builder /usr/local /usr/local
299301

300-
ENV CGAL_GIT_BRANCH 5.5.x-branch
301-
ENV CGAL55_GIT_HASH 0c17d17f62216319809ed3d259355bc9b35bb12e
302+
ARG CGAL_GIT_BRANCH
303+
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
304+
ENV CGAL5X_GIT_HASH ad130ba0e0603c06c2a3de887c2570b131ed206f
302305
ENV SFCGAL_GIT_HASH ae0a12da1e7a32d163930789e62874ca6ff0792c
303-
ENV PROJ_GIT_HASH 4c3b4264056b641de9a6baeb6aabbb69aaacbb09
304-
ENV GEOS_GIT_HASH 335cf85d0a66540bcf4474a00f9f39c1084976b3
305-
ENV GDAL_GIT_HASH da9dd6dbc6b6b3773c56da87245118ae2120eb9c
306+
ENV PROJ_GIT_HASH 7e10ddc628e014c317c18d4bf464ea8947ce082b
307+
ENV GEOS_GIT_HASH afcb31885fb206d2e3093ead943aa320a991370a
308+
ENV GDAL_GIT_HASH 9b77dcc88edf71da468e6e29e26b17df2cf76e5f
306309

307310
# Minimal command line test ( fail fast )
308311
RUN set -ex \
@@ -321,7 +324,7 @@ RUN set -ex \
321324
|| echo "ogr2ogr missing PostgreSQL driver" && exit 1
322325

323326
# install postgis
324-
ENV POSTGIS_GIT_HASH 36fcdd626ba8b888119c8a53c7365ca9e9786f61
327+
ENV POSTGIS_GIT_HASH b0388921dcea093d370fddc45b3259610f34153a
325328

326329
RUN set -ex \
327330
&& apt-get update \
@@ -363,8 +366,6 @@ RUN set -ex \
363366
# configure options taken from:
364367
# https://anonscm.debian.org/cgit/pkg-grass/postgis.git/tree/debian/rules?h=jessie
365368
&& ./configure \
366-
# --with-gui \
367-
--with-pcredir="$(pcre-config --prefix)" \
368369
--enable-lto \
369370
&& make -j$(nproc) \
370371
&& make install \

Dockerfile.master.template

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
# %%TXT_AUTOGENERATED%%
33
#
44

5-
# "experimental" ; only for testing! Changes expected!
6-
# multi-stage dockerfile; minimal docker version >= 17.05
5+
# "Experimental"; solely for testing purposes. Anticipate frequent changes!
6+
# This is a multi-stage Dockerfile, requiring a minimum Docker version of 17.05.
77

88
ARG DOCKER_CMAKE_BUILD_TYPE=Release
9+
ARG CGAL_GIT_BRANCH=5.6.x-branch
910
FROM postgres:%%PG_MAJOR%%-%%DEBIAN_VERSION%% as builder
1011

1112
LABEL maintainer="PostGIS Project - https://postgis.net" \
@@ -83,17 +84,18 @@ ARG DOCKER_CMAKE_BUILD_TYPE
8384
ENV DOCKER_CMAKE_BUILD_TYPE=${DOCKER_CMAKE_BUILD_TYPE}
8485

8586
# cgal & sfcgal
86-
# By utilizing the latest commit of the CGAL 5.5.x-branch and implementing a header-only build for SFCGAL,
87+
# By utilizing the latest commit of the CGAL 5.x.x-branch and implementing a header-only build for SFCGAL,
8788
# one can benefit from the latest CGAL patches while avoiding compatibility issues.
88-
ENV CGAL_GIT_BRANCH 5.5.x-branch
89-
ENV CGAL55_GIT_HASH %%CGAL55_GIT_HASH%%
89+
ARG CGAL_GIT_BRANCH
90+
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
91+
ENV CGAL5X_GIT_HASH %%CGAL5X_GIT_HASH%%
9092
ENV SFCGAL_GIT_HASH %%SFCGAL_GIT_HASH%%
9193
RUN set -ex \
9294
&& mkdir -p /usr/src \
9395
&& cd /usr/src \
9496
&& git clone --branch ${CGAL_GIT_BRANCH} https://github.com/CGAL/cgal \
9597
&& cd cgal \
96-
&& git checkout ${CGAL55_GIT_HASH} \
98+
&& git checkout ${CGAL5X_GIT_HASH} \
9799
&& git log -1 > /_pgis_cgal_last_commit.txt \
98100
&& cd /usr/src \
99101
&& git clone https://gitlab.com/Oslandia/SFCGAL.git \
@@ -297,8 +299,9 @@ RUN set -ex \
297299
COPY --from=builder /_pgis*.* /
298300
COPY --from=builder /usr/local /usr/local
299301

300-
ENV CGAL_GIT_BRANCH 5.5.x-branch
301-
ENV CGAL55_GIT_HASH %%CGAL55_GIT_HASH%%
302+
ARG CGAL_GIT_BRANCH
303+
ENV CGAL_GIT_BRANCH=${CGAL_GIT_BRANCH}
304+
ENV CGAL5X_GIT_HASH %%CGAL5X_GIT_HASH%%
302305
ENV SFCGAL_GIT_HASH %%SFCGAL_GIT_HASH%%
303306
ENV PROJ_GIT_HASH %%PROJ_GIT_HASH%%
304307
ENV GEOS_GIT_HASH %%GEOS_GIT_HASH%%
@@ -363,8 +366,6 @@ RUN set -ex \
363366
# configure options taken from:
364367
# https://anonscm.debian.org/cgit/pkg-grass/postgis.git/tree/debian/rules?h=jessie
365368
&& ./configure \
366-
# --with-gui \
367-
--with-pcredir="$(pcre-config --prefix)" \
368369
--enable-lto \
369370
&& make -j$(nproc) \
370371
&& make install \

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This image ensures that the default database created by the parent `postgres` im
1818

1919
Unless `-e POSTGRES_DB` is passed to the container at startup time, this database will be named after the admin user (either `postgres` or the user specified with `-e POSTGRES_USER`). If you would prefer to use the older template database mechanism for enabling PostGIS, the image also provides a PostGIS-enabled template database called `template_postgis`.
2020

21-
# Versions (2023-05-31)
21+
# Versions (2023-06-18)
2222

2323
Supported architecture: `amd64`
2424

@@ -59,7 +59,7 @@ Recommended version for new users: `postgis/postgis:15-3.3`
5959

6060
* We provide alpha, beta, release candidate (rc), and development (identified as ~master) versions.
6161
* The template for the `*-master` images is updated manually, which might lead to a delay of a few weeks sometimes.
62-
* The ~master SFCGAL version is 1.4 or higher. The cgal version is locked on the [5.5.x-branch](https://github.com/CGAL/cgal/tree/5.5.x-branch).
62+
* The ~master SFCGAL version is 1.4 or higher. The cgal version is locked on the [5.6.x-branch](https://github.com/CGAL/cgal/tree/5.6.x-branch).
6363

6464
| DockerHub image | Dockerfile | OS | Postgres | PostGIS |
6565
| --------------- | ---------- | -- | -------- | ------- |

0 commit comments

Comments
 (0)