Skip to content

Instantly share code, notes, and snippets.

@zabop
Created October 30, 2025 09:49
Show Gist options
  • Select an option

  • Save zabop/b33f031cca20492ce321653d91935ece to your computer and use it in GitHub Desktop.

Select an option

Save zabop/b33f031cca20492ce321653d91935ece to your computer and use it in GitHub Desktop.
tiles-with-filled-holes
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