2023-07-18 09:35:28 +02:00

12 lines
244 B
Docker

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