This project creates a working snap of QGIS (www.qgis.org). QGIS is a Geographic Information System (GIS) that supports vector, raster & database formats.
Tagged versions of the Snapcraft configuration file :
Only AMD64 versions of QGis are currently available.
On an Ubuntu system a snap can be built out of the snapcraft.yaml
by running snapcraft
in the project directory.
For a clean, system independent build it is recommanden to use the official snapcore/snapcraft
Docker image.
Using Docker, you’ll map the current directory into the container and then build the snap from that same directory:
docker build -t snapcraft-qgis-ubuntu .
docker run -v $PWD:$PWD -w $PWD snapcraft-qgis-ubuntu bash -c "apt update && apt upgrade -y && snapcraft clean && snapcraft"