akv-cli 0.10.1

The Azure Key Vault CLI (unofficial) can read secrets from Key Vault, securely pass secrets to other commands or inject them into configuration files, encrypt and decrypt secrets, and managed keys and secrets in Key Vault.
Documentation
1
2
3
4
5
6
7
8
9
10
FROM mcr.microsoft.com/devcontainers/rust:1-1-bullseye
RUN apt-get update \
 && export DEBIAN_FRONTEND=noninteractive \
 && apt-get -y install --no-install-recommends \
      git \
      xsltproc \
 # Clean up
 && apt-get autoremove -y \
 && apt-get clean - \
 && rm -rf /var/lib/apt/lists/*