APT Repository for Status.im software
To use repos available here use one of the following lines to create repo config file:
echo 'deb https://apt.status.im/nimbus all main' | sudo tee /etc/apt/sources.list.d/nimbus.list
And import the GPG key that is used to sign the releases:
sudo curl https://apt.status.im/pubkey.asc -o /etc/apt/trusted.gpg.d/apt-status-im.asc
Or using the GnuPG tool:
gpg --recv-key --keyserver keyserver.ubuntu.com 55D8E9D1FD521C8F
gpg --armor --export 55D8E9D1FD521C8F | sudo tee /etc/apt/trusted.gpg.d/apt-status-im.asc
Or using the deprecated apt-key tool:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 55D8E9D1FD521C8F
After that you can install Nimbus software with:
sudo apt-get update
sudo apt-get install nimbus-beacon-node nimbus-validator-client
In case of Docker images you might have to install ca-certificates:
sudo apt-get install ca-certificates