Skip to content

Commit 0d9395f

Browse files
Upgrade Go builder images from 1.24 to 1.26 (#914)
### What Update the Go base image from `golang:1.24-trixie` to `golang:1.26-trixie` across all Go build stages in the Dockerfile: stellar-rpc-builder, stellar-horizon-builder, stellar-friendbot-builder, and stellar-galexie-builder. ### Why Go 1.25 and 1.26 are now released; staying on 1.24 means missing toolchain improvements, performance gains, and security fixes included in newer releases. Some of the builds require at least 1.25 now.
1 parent 16c5afa commit 0d9395f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# |------------------------|----------------|
1010
# | ubuntu:24.04 | 13 (trixie) |
1111
# | rust:1-trixie | 13 (trixie) |
12-
# | golang:1.24-trixie | 13 (trixie) |
12+
# | golang:1.26-trixie | 13 (trixie) |
1313
# | node:22-trixie | 13 (trixie) |
1414

1515
ARG XDR_IMAGE=stellar-xdr-stage
@@ -82,7 +82,7 @@ COPY --from=stellar-core-builder /usr/local/bin/stellar-core /stellar-core
8282

8383
# rpc
8484

85-
FROM golang:1.24-trixie AS stellar-rpc-builder
85+
FROM golang:1.26-trixie AS stellar-rpc-builder
8686

8787
ARG RPC_REPO
8888
ARG RPC_REF
@@ -110,7 +110,7 @@ COPY --from=stellar-rpc-builder /go/src/github.com/stellar/stellar-rpc/stellar-r
110110

111111
# horizon
112112

113-
FROM golang:1.24-trixie AS stellar-horizon-builder
113+
FROM golang:1.26-trixie AS stellar-horizon-builder
114114

115115
ENV DEBIAN_FRONTEND=noninteractive
116116
COPY apt-retry /usr/local/bin/
@@ -135,7 +135,7 @@ COPY --from=stellar-horizon-builder /stellar-horizon /stellar-horizon
135135

136136
# friendbot
137137

138-
FROM golang:1.24-trixie AS stellar-friendbot-builder
138+
FROM golang:1.26-trixie AS stellar-friendbot-builder
139139

140140
ENV DEBIAN_FRONTEND=noninteractive
141141
COPY apt-retry /usr/local/bin/
@@ -190,7 +190,7 @@ COPY --from=stellar-lab-builder /usr/local/bin/node /node
190190

191191
# galexie
192192

193-
FROM golang:1.24-trixie AS stellar-galexie-builder
193+
FROM golang:1.26-trixie AS stellar-galexie-builder
194194

195195
ARG GALEXIE_REPO
196196
ARG GALEXIE_REF

0 commit comments

Comments
 (0)