mmacata 55723ae204 use copy instead of git clone in Dockerfiles (#151) 5 năm trước cách đây
..
Dockerfile_ubuntu_pdal 55723ae204 use copy instead of git clone in Dockerfiles (#151) 5 năm trước cách đây
README_ubuntu.md 55723ae204 use copy instead of git clone in Dockerfiles (#151) 5 năm trước cách đây

README_ubuntu.md

Docker GRASS GIS (Ubuntu Linux)

Dockerfile with an Ubuntu 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/ubuntu/Dockerfile_ubuntu_pdal \
         --tag grass-py3-pdal:latest-ubuntu .

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

$ docker run -it grass-py3-pdal:latest-ubuntu /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/ubuntu/Dockerfile_ubuntu_pdal \
         -t grass-py3-pdal:stable-ubuntu .

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