add sops
/ build-push-image (push) Successful in 18s

This commit is contained in:
Márcio Fernandes
2026-05-30 01:40:18 +01:00
parent a5abe02cb6
commit 0bea99e14e
2 changed files with 10 additions and 0 deletions
+1
View File
@@ -61,6 +61,7 @@ Use a local override file to bind personal configuration files and secrets witho
- **ansible** → configuration management and automation - **ansible** → configuration management and automation
- **rclone, rsync** → file synchronization and transfer utilities - **rclone, rsync** → file synchronization and transfer utilities
- **age** - **age**
- **sops**
### ☸️ Kubernetes Tooling ### ☸️ Kubernetes Tooling
+9
View File
@@ -96,4 +96,13 @@ RUN curl -L -o /tmp/buildkit.tar.gz \
RUN curl -s https://fluxcd.io/install.sh | bash RUN curl -s https://fluxcd.io/install.sh | bash
#----- SOPS
ENV SOPS_VERSION=3.13.1
RUN wget "https://github.com/getsops/sops/releases/download/v${SOPS_VERSION}/sops-v${SOPS_VERSION}.linux.amd64" -O /tmp/sops
RUN cp /tmp/sops /usr/local/bin/sops
RUN chmod +x /usr/local/bin/sops