12 lines
244 B
Docker
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 . . |