Update Dockerfile for latest Vaultwarden and dependencies

Updated Dockerfile to use the latest Vaultwarden image and removed specific versioning for dependencies.
This commit is contained in:
Alexandre
2025-12-28 21:35:58 +01:00
committed by GitHub
parent fedf7ee666
commit 5e7c047bd3

View File

@@ -18,7 +18,7 @@ ARG BUILD_FROM=ghcr.io/hassio-addons/debian-base:9.1.0
############################################################################### ###############################################################################
# Get prebuild containers from Vaultwarden # Get prebuild containers from Vaultwarden
############################################################################### ###############################################################################
FROM "vaultwarden/server:1.34.3" AS vaultwarden FROM "vaultwarden/server:latest" AS vaultwarden
############################################################################### ###############################################################################
# Build the actual add-on. # Build the actual add-on.
@@ -39,10 +39,10 @@ RUN \
apt-get update \ apt-get update \
\ \
&& apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \
libmariadb-dev-compat=1:11.8.3-0+deb13u1 \ libmariadb-dev \
libpq5=17.6-0+deb13u1 \ libpq5 \
nginx=1.26.3-3+deb13u1 \ nginx1 \
sqlite3=3.46.1-7 \ sqlite3 \
&& apt-get clean \ && apt-get clean \
&& rm -f -r \ && rm -f -r \
/etc/nginx \ /etc/nginx \