Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: geos support #29

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 [email protected]
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"]
Loading