Skip to content

Commit

Permalink
fix: geos support (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-rieznik authored Oct 2, 2024
1 parent 19b2e29 commit f46ec54
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM debian:bookworm

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

ARG PYTHON_VERSION=3.12.6
Expand Down Expand Up @@ -35,6 +35,7 @@ RUN \
\
curl \
cmake \
libgeos-dev \
libproj-dev \
swig \
&& rm -rf /var/lib/apt/lists/* \
Expand Down Expand Up @@ -72,4 +73,4 @@ RUN \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf "${SOURCE_DIR}"

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

0 comments on commit f46ec54

Please sign in to comment.