Markus Neteler 15d6526eac GRASS GIS 8 dev: version bump to grass81 (#2084) 3 rokov pred
..
Dockerfile 15d6526eac GRASS GIS 8 dev: version bump to grass81 (#2084) 3 rokov pred
README.md 53a7768cf2 Add github workflow for docker build and push (#1790) 3 rokov pred

README.md

Docker GRASS GIS (Debian Linux)

Dockerfile with an Debian Linux image with GRASS GIS, PDAL support and grass-session.

Download size of this image is of approximately 2.6 GB.

Clone this repository and change directory:

git clone https://github.com/OSGeo/grass.git
cd grass

Build the docker with:

docker build \
         --file docker/debian/Dockerfile \
         --tag grass-py3-pdal:latest-debian .

View the images available using sudo docker images and open a bash terminal with:

$ docker run -it grass-py3-pdal:latest-debian /bin/bash
bash-5.0#

To build a stable version:

change to the releasebranch or tag you want to build:

git checkout remotes/origin/releasebranch_7_8

and build and enter with:

$ docker build \
         -f docker/debian/Dockerfile \
         -t grass-py3-pdal:stable-debian .

$ docker run -it grass-py3-pdal:stable-debian /bin/bash
bash-5.0#