Skip to content

Commit 7b237f0

Browse files
committed
Docker: update Alpine to 3.23
1 parent b4565ed commit 7b237f0

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docker/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ best of our knowledge and not guaranteed. Users should check by themselves.
1010
# Alpine based
1111

1212
Alpine version:
13+
* 3.23 for GDAL 3.13
1314
* 3.22 for GDAL 3.12
1415
* 3.21 for GDAL 3.11
1516
* 3.20 for GDAL 3.10

docker/alpine-normal/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Public domain
88
# or licensed under MIT (LICENSE.TXT) Copyright 2019 Even Rouault <[email protected]>
99

10-
ARG ALPINE_VERSION=3.22
10+
ARG ALPINE_VERSION=3.23
1111
FROM alpine:${ALPINE_VERSION} AS builder
1212

1313
# Derived from osgeo/proj by Howard Butler <[email protected]>
@@ -111,7 +111,7 @@ RUN if test "${HDF4_VERSION}" != "" -a "$(uname -m)" = "x86_64"; then ( \
111111
&& curl -L -fsS https://github.com/HDFGroup/hdf4/archive/refs/tags/hdf${HDF4_VERSION}.tar.gz \
112112
| tar xz -C hdf4 --strip-components=1 \
113113
&& cd hdf4 \
114-
&& LDFLAGS=-ltirpc ./configure --prefix=/usr --enable-shared --disable-static \
114+
&& CFLAGS="-Wno-incompatible-pointer-types" LDFLAGS=-ltirpc ./configure --prefix=/usr --enable-shared --disable-static \
115115
--with-szlib=/usr --disable-fortran --disable-netcdf \
116116
&& make -j$(nproc) \
117117
&& make install \

docker/alpine-small/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Public domain
88
# or licensed under MIT (LICENSE.TXT) Copyright 2019 Even Rouault <[email protected]>
99

10-
ARG ALPINE_VERSION=3.22
10+
ARG ALPINE_VERSION=3.23
1111
FROM alpine:${ALPINE_VERSION} AS builder
1212

1313
# Derived from osgeo/proj by Howard Butler <[email protected]>

0 commit comments

Comments
 (0)