From 4014842cf5c8aa28eb19f27b3cc1669a0cd83872 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 9 Feb 2026 10:37:29 +0100 Subject: [PATCH] Change NetBird components to use latest versions Updated NetBird components to use 'latest' versions instead of specific version numbers. --- netbird-server/Dockerfile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/netbird-server/Dockerfile b/netbird-server/Dockerfile index 1b4dc5b1a..1f3604b52 100644 --- a/netbird-server/Dockerfile +++ b/netbird-server/Dockerfile @@ -14,9 +14,6 @@ # 1 NetBird components # ######################## -ARG NETBIRD_VERSION=0.64.5 -ARG DASHBOARD_VERSION=2.31.0 - ################# # 2 Base Image # ################# @@ -25,10 +22,10 @@ ARG BUILD_FROM FROM ${BUILD_FROM} as base ENV BASHIO_VERSION=0.14.3 -FROM netbirdio/management:${NETBIRD_VERSION} AS netbird-management -FROM netbirdio/signal:${NETBIRD_VERSION} AS netbird-signal -FROM netbirdio/relay:${NETBIRD_VERSION} AS netbird-relay -FROM netbirdio/dashboard:${DASHBOARD_VERSION} AS netbird-dashboard +FROM netbirdio/management:latest AS netbird-management +FROM netbirdio/signal:latest AS netbird-signal +FROM netbirdio/relay:latest AS netbird-relay +FROM netbirdio/dashboard:latest AS netbird-dashboard ################## # 3 Modify Image #