feat: added support for apikey authorization

This commit is contained in:
2024-02-12 23:03:05 +01:00
parent 5003ae16c3
commit 756c939d86
6 changed files with 64 additions and 18 deletions

View File

@@ -2,11 +2,11 @@ FROM node:lts-slim
# install openssl
RUN apt-get update && \
apt-get install -y --no-install-recommends openssl && \
apt-get install -y --no-install-recommends openssl expect && \
rm -rf /var/cache/apk/*
# install bitwarden-cli
RUN npm install -g @bitwarden/cli@2023.2.0
RUN npm install -g @bitwarden/cli
# add the export script
RUN mkdir -p /opt/bw-export