From 50fd0d786ecce94f66c4c01176fd400d690b6609 Mon Sep 17 00:00:00 2001 From: Denis Kadyshev Date: Fri, 23 Dec 2022 20:51:53 +0700 Subject: [PATCH] Sops and gpg command (#597) --- Dockerfile | 2 +- Dockerfile.debian-stable-slim | 1 + Dockerfile.ubuntu | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0cdd2e4e..d84e057e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ FROM alpine:3.16 LABEL org.opencontainers.image.source https://github.com/helmfile/helmfile -RUN apk add --no-cache ca-certificates git bash curl jq openssh-client +RUN apk add --no-cache ca-certificates git bash curl jq openssh-client gnupg # Set Helm home variables so that also non-root users can use plugins etc. ARG HOME="/helm" diff --git a/Dockerfile.debian-stable-slim b/Dockerfile.debian-stable-slim index 28b863b2..1ba90d34 100644 --- a/Dockerfile.debian-stable-slim +++ b/Dockerfile.debian-stable-slim @@ -18,6 +18,7 @@ LABEL org.opencontainers.image.source https://github.com/helmfile/helmfile RUN apt update -qq && \ apt install --no-install-recommends -y \ ca-certificates \ + gnupg \ git bash curl jq wget openssh-client && \ rm -rf /var/lib/apt/lists/* diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index d1085a21..33437549 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -18,6 +18,7 @@ LABEL org.opencontainers.image.source https://github.com/helmfile/helmfile RUN apt update -qq && \ apt install --no-install-recommends -y \ ca-certificates \ + gnupg \ git bash curl jq wget openssh-client && \ rm -rf /var/lib/apt/lists/*