From 5b9c79a6435bf1686cc9f8256fd742a0a372fe31 Mon Sep 17 00:00:00 2001 From: Jochen Maes Date: Sat, 18 Nov 2023 12:24:41 +0100 Subject: [PATCH] fix version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 663c8e2..c075bdb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:alpine ENV BW_CLI_VERSION=2023.10.0 -RUN npm install -g @bitwarden/cli +RUN npm install -g @bitwarden/cli@$BW_CLI_VERSION COPY entrypoint.sh / CMD ["/entrypoint.sh"]