add autovault container

This commit is contained in:
ace
2025-04-10 00:22:38 +03:00
parent c699f5919e
commit f57fd4c5c2
4 changed files with 49 additions and 0 deletions

8
autovault/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM almalinux:9
COPY *.repo /etc/yum.repos.d/
RUN dnf install -y kubectl vault jq && dnf clean all
RUN setcap -r /usr/bin/vault
ENTRYPOINT ["/vault/scripts/autovault.sh"]