Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# |------------------------|----------------|
# | ubuntu:24.04 | 13 (trixie) |
# | rust:1-trixie | 13 (trixie) |
# | golang:1.24-trixie | 13 (trixie) |
# | golang:1.26-trixie | 13 (trixie) |
# | node:22-trixie | 13 (trixie) |

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

# rpc

FROM golang:1.24-trixie AS stellar-rpc-builder
FROM golang:1.26-trixie AS stellar-rpc-builder

ARG RPC_REPO
ARG RPC_REF
Expand Down Expand Up @@ -110,7 +110,7 @@ COPY --from=stellar-rpc-builder /go/src/github.com/stellar/stellar-rpc/stellar-r

# horizon

FROM golang:1.24-trixie AS stellar-horizon-builder
FROM golang:1.26-trixie AS stellar-horizon-builder

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

# friendbot

FROM golang:1.24-trixie AS stellar-friendbot-builder
FROM golang:1.26-trixie AS stellar-friendbot-builder

ENV DEBIAN_FRONTEND=noninteractive
COPY apt-retry /usr/local/bin/
Expand Down Expand Up @@ -190,7 +190,7 @@ COPY --from=stellar-lab-builder /usr/local/bin/node /node

# galexie

FROM golang:1.24-trixie AS stellar-galexie-builder
FROM golang:1.26-trixie AS stellar-galexie-builder

ARG GALEXIE_REPO
ARG GALEXIE_REF
Expand Down
Loading