From d0a5a613af7c2537effd99da17090830be5c8db8 Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Thu, 4 Dec 2025 23:15:00 +0800 Subject: [PATCH] fix(docker): expose GO_VERSION arg in builder stages Builder images install Go SDK and must receive GO_VERSION explicitly. Adds missing ARG to account and rag-server Dockerfiles. --- account/Dockerfile | 1 + rag-server/Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/account/Dockerfile b/account/Dockerfile index 43c12c5..ce12e31 100644 --- a/account/Dockerfile +++ b/account/Dockerfile @@ -3,6 +3,7 @@ # ------------------------------ ARG GO_RUNTIME_IMAGE=ghcr.io/cloud-neutral-toolkit/go-runtime:latest FROM ${GO_RUNTIME_IMAGE} AS builder +ARG GO_VERSION="1.24.5" RUN apt-get update \ && apt-get install -y --no-install-recommends make git ca-certificates \ diff --git a/rag-server/Dockerfile b/rag-server/Dockerfile index 9ecfb8a..cdff78d 100644 --- a/rag-server/Dockerfile +++ b/rag-server/Dockerfile @@ -4,6 +4,7 @@ ARG GO_RUNTIME_IMAGE=ghcr.io/cloud-neutral-toolkit/go-runtime:latest FROM ${GO_RUNTIME_IMAGE} AS builder +ARG GO_VERSION="1.24.5" RUN apt-get update \ && apt-get install -y --no-install-recommends make git ca-certificates \