Skip to content

Commit f46ec54

Browse files
fix: geos support (#29)
1 parent 19b2e29 commit f46ec54

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM debian:bookworm
22

33
LABEL org.opencontainers.image.authors=andrii.rieznik@pm.me
44
LABEL org.opencontainers.image.source=https://github.com/andrii-reznik/docker-python-gdal
5-
LABEL org.opencontainers.image.description="Debian based image with pre-installed GDAL/OGR libraries and Python bindings"
5+
LABEL org.opencontainers.image.description="Debian-based image bundled with GDAL/OGR and Python"
66
LABEL org.opencontainers.image.licenses=MIT
77

88
ARG PYTHON_VERSION=3.12.6
@@ -35,6 +35,7 @@ RUN \
3535
\
3636
curl \
3737
cmake \
38+
libgeos-dev \
3839
libproj-dev \
3940
swig \
4041
&& rm -rf /var/lib/apt/lists/* \
@@ -72,4 +73,4 @@ RUN \
7273
&& rm -rf /var/lib/apt/lists/* \
7374
&& rm -rf "${SOURCE_DIR}"
7475

75-
CMD python -V && pip -V && gdalinfo --version
76+
CMD ["python", "-V", "&&", "pip", "-V", "&&", "gdalinfo", "--version"]

0 commit comments

Comments
 (0)