Created
October 30, 2025 09:48
-
-
Save zabop/a6af8f61c8dae5d4e967dafeeaf85ed0 to your computer and use it in GitHub Desktop.
hole-filling-debug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM --platform=linux/amd64 ghcr.io/osgeo/gdal:ubuntu-full-3.11.4 | |
| RUN apt-get update && \ | |
| apt-get install -y \ | |
| build-essential \ | |
| python3-pip \ | |
| python3-venv \ | |
| && rm -rf /var/lib/apt/lists/* | |
| RUN python3 -m venv /opt/venv | |
| ENV PATH="/opt/venv/bin:$PATH" | |
| RUN pip install geopandas==1.0.1 | |
| # docker build -t debug . | |
| # docker run --interactive --tty --rm --workdir /home \ | |
| # --mount type=bind,source="$(pwd)",target=/home \ | |
| # --publish 8888:8888 \ | |
| # debug bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment