10 lines
209 B
Docker
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
|