From b29041404b0c69c8e8d6405aaf46fc60dd1034c4 Mon Sep 17 00:00:00 2001 From: Martin521 <29605222+Martin521@users.noreply.github.com> Date: Sat, 7 Oct 2023 14:43:02 +0000 Subject: [PATCH] add gnupg installation to Dockerfile --- .devcontainer/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 8bb334d1e44..e1dcf31c425 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -14,6 +14,7 @@ RUN apt-get update \ && apt-get -y install --no-install-recommends apt-utils dialog 2>&1 \ # Verify bash, git, process tools, lsb-release (common in install instructions for CLIs) installed && apt-get -y install bash git openssh-client less iproute2 procps lsb-release \ + && apt-get -y install gnupg \ # Clean up && apt-get autoremove -y \ && apt-get clean -y \ @@ -23,4 +24,4 @@ RUN apt-get update \ ENV DEBIAN_FRONTEND=dialog # Make sure we can build using plain dotnet -ENV BUILDING_USING_DOTNET="true" \ No newline at end of file +ENV BUILDING_USING_DOTNET="true"