File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1717# Note: you can use --build-arg to specify the version to build:
1818# docker build -t web_vault_build --build-arg VAULT_VERSION=main .
1919
20- FROM node:20 -bookworm AS build
20+ FROM node:22 -bookworm AS build
2121RUN node --version && npm --version
2222
2323# Can be a tag, release, but prefer a commit hash because it's not changeable
2424# https://github.com/bitwarden/clients/commit/${VAULT_VERSION}
2525#
26- # Using https://github.com/vaultwarden/vw_web_builds/tree/v2025.6.2
27- ARG VAULT_VERSION=483603bec7ce34ecea3cdf30d1b1757e2708d80c
26+ # Using https://github.com/vaultwarden/vw_web_builds/tree/v2025.7.0
27+ ARG VAULT_VERSION=20e3be7a2e0d487cad29a10dbf8afca6a255cde4
2828ENV VAULT_VERSION=$VAULT_VERSION
2929ENV VAULT_FOLDER=bw_clients
3030ENV CHECKOUT_TAGS=false
Original file line number Diff line number Diff line change 22set -o pipefail -o errexit
33BASEDIR=$( RL=$( readlink -n " $0 " ) ; SP=" ${RL:- $0 } " ; dirname " $( cd " $( dirname " ${SP} " ) " ; pwd) /$( basename " ${SP} " ) " )
44
5- FALLBACK_WEBVAULT_VERSION=v2025.6.2
5+ FALLBACK_WEBVAULT_VERSION=v2025.7.0
66
77# Error handling
88handle_error () {
You can’t perform that action at this time.
0 commit comments