From bbef2431bcbd42714695b273e72b1c9a0c8d4ba7 Mon Sep 17 00:00:00 2001 From: "Ian H. Pittwood" Date: Mon, 20 Jan 2020 10:43:45 -0600 Subject: [PATCH] Add gpg to bionic packages The `gpg` package does not come preinstalled on Ubuntu Bionic, but is required in order to run the `genesis_bundle` command. This change adds an install command for `gpg` to the Bionic image. Change-Id: I77fa9151fbc947aabb371581ad4defd2cf37af1c --- images/pegleg/Dockerfile.ubuntu_bionic | 2 ++ 1 file changed, 2 insertions(+) diff --git a/images/pegleg/Dockerfile.ubuntu_bionic b/images/pegleg/Dockerfile.ubuntu_bionic index 590e231d..73d0ff50 100644 --- a/images/pegleg/Dockerfile.ubuntu_bionic +++ b/images/pegleg/Dockerfile.ubuntu_bionic @@ -22,6 +22,8 @@ RUN set -ex \ curl \ gcc \ git \ + gpg \ + gpg-agent \ libssl-dev \ netbase \ openssh-client \