improve script to recursively decrypt everything if able to

This commit is contained in:
Mark Kaulertz
2025-06-20 10:41:20 +02:00
parent 536831f8d9
commit 0bb416984d
3 changed files with 52 additions and 32 deletions
+6
View File
@@ -4,6 +4,12 @@ FROM alpine:latest
# Install only the tools we need: SOPS and GnuPG
RUN apk add --no-cache sops gnupg
# Create the .gnupg directory with correct permissions first
RUN mkdir -m 700 /root/.gnupg
# Copy our GPG agent config file into the image
COPY gpg.conf /root/.gnupg/gpg.conf
# Set a working directory
WORKDIR /app