NCSU GeoForAll Lab
at the
Center for Geospatial Analytics
North Carolina State University
GIS 710: Geospatial Analytics for Grand Challenges
November 10, 2025
Dockerfile: plain text specification of how the computational environment should look like in Docker
FROM ubuntu:22.04
RUN apt-get update
RUN apt-get install -y \
g++ \
python \
python-numpy
requirements.txt: list of Python packages (and optionally their versions) consumed by package installer
pyunpack GDAL==3.0.1
More accepted by Binder: environment.yml, runtime.txt, apt.txt, DESCRIPTION, default.nix, postBuild, start, ...