From dbc72ee20bbf8453c9ea6489ec7c00d2ed1dffac Mon Sep 17 00:00:00 2001 From: Koen Van Looveren Date: Mon, 27 Nov 2023 19:10:57 +0100 Subject: [PATCH] fix: install gnupg as well --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index aeba825..812bf55 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,8 @@ LABEL "com.github.actions.description"="Automating version bump for conventional LABEL "com.github.actions.icon"="upload-cloud" LABEL "com.github.actions.color"="blue" -# Install system dependencies for Git, wget, Curl, and Unzip -RUN apt-get update && apt-get install -y git wget curl unzip xz-utils +# Install system dependencies for Git, wget, gnupg, Curl, and Unzip +RUN apt-get update && apt-get install -y git wget gnupg curl unzip xz-utils # Install Dart RUN apt-get update && apt-get install -y apt-transport-https