From 0dc8b62eb1171433645924fb2a0e6b7c0b8815a6 Mon Sep 17 00:00:00 2001 From: Zomatree Date: Sun, 9 Aug 2026 04:13:37 +0100 Subject: [PATCH] fix(ci): add BASE_IMAGE support Signed-off-by: Zomatree --- crates/daemons/searchd/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/daemons/searchd/Dockerfile b/crates/daemons/searchd/Dockerfile index ff6af6a3..4a391fdc 100644 --- a/crates/daemons/searchd/Dockerfile +++ b/crates/daemons/searchd/Dockerfile @@ -1,5 +1,6 @@ # Build Stage -FROM ghcr.io/stoatchat/base:latest AS builder +ARG BASE_IMAGE=ghcr.io/stoatchat/base:latest +FROM $BASE_IMAGE AS builder FROM debian:12 AS debian # Bundle Stage