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.
This commit is contained in:
parent
59cfd6c397
commit
d0a5a613af
@ -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 \
|
||||
|
||||
@ -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 \
|
||||
|
||||
Loading…
Reference in New Issue
Block a user