Skip to content

Latest commit

 

History

History

alpine

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Docker GRASS GIS (alpine linux)

Dockerfile with an Alpine Linux image with GRASS GIS, PDAL support.

Download size of this image is only approximately 80 MB.

Clone this repository and change directory:

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

Build the docker with:

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

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

$ docker run -it grass-py3-pdal:latest-alpine /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_8_2

and build and enter with:

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

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