From 265b67feb49ac47e416491e878ca06fe5fbdcfef Mon Sep 17 00:00:00 2001 From: nickspizzas Date: Thu, 8 Aug 2024 14:53:58 +0200 Subject: [PATCH] chore: cleanup --- Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 10f1ea0..393ed00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,13 +4,12 @@ LABEL maintainer="mario.siegenthaler@linkyard.ch" ENV SOPS_VERSION=v3.9.0 ENV SPRUCE_VERSION=1.27.0 -RUN apk --no-cache add bash RUN apk --no-cache add --update curl wget ca-certificates -RUN apk --no-cache add jq yq age gnupg +RUN apk --no-cache add bash jq yq age gnupg RUN curl -LO "https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.amd64" \ - && mv sops-${SOPS_VERSION}.linux.amd64 /usr/local/bin/sops \ - && chmod +x /usr/local/bin/sops + && mv sops-${SOPS_VERSION}.linux.amd64 /usr/local/bin/sops \ + && chmod +x /usr/local/bin/sops RUN wget https://github.com/geofffranks/spruce/releases/download/v${SPRUCE_VERSION}/spruce-linux-amd64 \ && chmod a+x spruce-linux-amd64 \