2020-12-25 20:24:54 +01:00

10 lines
206 B
Docker

FROM python:3.9-slim-buster
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