feat: initial version

This commit is contained in:
2023-03-19 21:07:09 +01:00
commit 994187c1f1
9 changed files with 212 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM node:lts-slim
# install openssl
RUN apt-get update && \
apt-get install -y --no-install-recommends openssl && \
rm -rf /var/cache/apk/*
# install bitwarden-cli
RUN npm install -g @bitwarden/cli@2023.2.0
# add the export script
RUN mkdir -p /opt/bw-export
COPY export.sh /opt/bw-export/export.sh
WORKDIR /opt/bw-export
ENTRYPOINT [ "bash", "export.sh" ]