2022-06-11 15:44:04 +02:00

10 lines
209 B
Docker

FROM python:3.10-slim-bullseye
WORKDIR /bitwarden-to-keepass
COPY . .
RUN apt update && apt install -y npm && \
pip install -r requirements.txt && \
npm i -g @bitwarden/cli && \
apt purge -y npm