initial commit

This commit is contained in:
Mark Kaulertz
2025-06-20 09:59:23 +02:00
commit 536831f8d9
2 changed files with 69 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# Use a minimal, secure base image
FROM alpine:latest
# Install only the tools we need: SOPS and GnuPG
RUN apk add --no-cache sops gnupg
# Set a working directory
WORKDIR /app
# Copy our decryption script into the container and make it executable
COPY entrypoint.sh .
RUN chmod +x ./entrypoint.sh
# Set the script as the entrypoint
ENTRYPOINT ["./entrypoint.sh"]