From 720efd720e70c0fd8df0306750f469e6edd77cee Mon Sep 17 00:00:00 2001 From: Kyle Scott Date: Mon, 4 Mar 2024 09:28:56 -0500 Subject: [PATCH] add gpg install to git image to allow for signed commits Signed-off-by: Kyle Scott --- Dockerfile.git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.git b/Dockerfile.git index 9e29d97..73f99ec 100644 --- a/Dockerfile.git +++ b/Dockerfile.git @@ -8,7 +8,7 @@ ARG RUN_CMD # analytics package target - we want a new layer here, since different # dependencies will have to be installed, sharing the common base above -RUN DEBIAN_FRONTEND=noninteractive apt -y install git-all +RUN DEBIAN_FRONTEND=noninteractive apt -y install git-all gpg ARG TEST="/test.sh" COPY --chmod=0555 src/test/$RUN_CMD.sh ${TEST}