Created
November 15, 2025 14:10
-
-
Save zabop/9e4db03b624cc5d4649d40184307e52d to your computer and use it in GitHub Desktop.
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 --system-site-packages /opt/venv | |
| ENV PATH="/opt/venv/bin:$PATH" | |
| RUN pip install shapely | |
| RUN pip install numpy | |
| RUN pip install geopandas | |
| RUN pip install pyproj | |
| RUN pip install jupyterlab | |
| # docker build -t sketch . | |
| # docker run --interactive --tty --rm --workdir /home \ | |
| # --mount type=bind,source="$(pwd)",target=/home \ | |
| # --publish 8888:8888 \ | |
| # sketch bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment