From 7784df7d9db5306a656ef0be08fe4def75e72e56 Mon Sep 17 00:00:00 2001 From: Stefan Melmuk Date: Fri, 24 Jul 2026 17:23:09 +0200 Subject: [PATCH 1/2] update to v2026.7.0 branch --- Dockerfile | 4 ++-- scripts/checkout_web_vault.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b0d81c3..dc884c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,8 +23,8 @@ RUN node --version && npm --version # Can be a tag, release, but prefer a commit hash because it's not changeable # https://github.com/bitwarden/clients/commit/${VAULT_VERSION} # -# Using https://github.com/vaultwarden/vw_web_builds/tree/v2026.6.4 -ARG VAULT_VERSION=ad8147249289918a9d77492596e088b75f1ff3fb +# Using https://github.com/vaultwarden/vw_web_builds/tree/v2026.7.0 +ARG VAULT_VERSION=d2a095eb800fe80a9bc524579b974796eae51994 ENV VAULT_VERSION=$VAULT_VERSION ENV VAULT_FOLDER=bw_clients ENV CHECKOUT_TAGS=false diff --git a/scripts/checkout_web_vault.sh b/scripts/checkout_web_vault.sh index d17db82..6fec300 100755 --- a/scripts/checkout_web_vault.sh +++ b/scripts/checkout_web_vault.sh @@ -2,7 +2,7 @@ set -o pipefail -o errexit BASEDIR=$(RL=$(readlink -n "$0"); SP="${RL:-$0}"; dirname "$(cd "$(dirname "${SP}")"; pwd)/$(basename "${SP}")") -FALLBACK_WEBVAULT_VERSION=v2026.6.4 +FALLBACK_WEBVAULT_VERSION=v2026.7.0 # Error handling handle_error() { From 27920eff81aa089cfebfe5530b61fdf05797765f Mon Sep 17 00:00:00 2001 From: Stefan Melmuk Date: Sun, 2 Aug 2026 19:22:16 +0200 Subject: [PATCH 2/2] use node 24 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dc884c7..8bad779 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ # Note: you can use --build-arg to specify the version to build: # docker build -t web_vault_build --build-arg VAULT_VERSION=main . -FROM node:22-trixie AS build +FROM node:24-trixie AS build RUN node --version && npm --version # Can be a tag, release, but prefer a commit hash because it's not changeable