mirror of
https://github.com/luzifer-docker/vault-self-unseal.git
synced 2024-12-20 15:11:18 +00:00
Knut Ahlers
ec545715d4
for example through a Kubernetes secret Signed-off-by: Knut Ahlers <knut@ahlers.me>
16 lines
237 B
Docker
16 lines
237 B
Docker
FROM luzifer/vault:latest
|
|
|
|
USER root
|
|
|
|
RUN set -ex \
|
|
&& apk --no-cache add \
|
|
bash \
|
|
curl \
|
|
jq
|
|
|
|
COPY entrypoint.sh /usr/local/bin/
|
|
|
|
USER vault
|
|
|
|
VOLUME ["/config"]
|
|
ENTRYPOINT ["/bin/bash", "/usr/local/bin/entrypoint.sh"]
|