akv-cli 0.2.0

The Azure Key Vault CLI can be used to read secrets, pass them securely to other commands, or inject them into configuration files.
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/*