Skip to content
Closed
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions exp/services/ledgerexporter/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22-bullseye AS builder
FROM golang:1.23-bullseye AS builder

WORKDIR /go/src/github.com/stellar/go

Expand All @@ -12,7 +12,7 @@ COPY . ./
ARG GOFLAGS
RUN go install github.com/stellar/go/exp/services/ledgerexporter

FROM ubuntu:22.04
FROM ubuntu:24.04
ARG STELLAR_CORE_VERSION
ENV STELLAR_CORE_VERSION=${STELLAR_CORE_VERSION:-*}
ENV STELLAR_CORE_BINARY_PATH /usr/bin/stellar-core
Expand Down
4 changes: 2 additions & 2 deletions exp/services/recoverysigner/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM golang:1.22-bullseye as build
FROM golang:1.23-bullseye as build

ADD . /src/recoverysigner
WORKDIR /src/recoverysigner
RUN go build -o /bin/recoverysigner ./exp/services/recoverysigner


FROM ubuntu:22.04
FROM ubuntu:24.04

RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates
COPY --from=build /bin/recoverysigner /app/
Expand Down
4 changes: 2 additions & 2 deletions exp/services/webauth/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM golang:1.22-bullseye as build
FROM golang:1.23-bullseye as build

ADD . /src/webauth
WORKDIR /src/webauth
RUN go build -o /bin/webauth ./exp/services/webauth


FROM ubuntu:22.04
FROM ubuntu:24.04

RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ca-certificates
COPY --from=build /bin/webauth /app/
Expand Down
4 changes: 2 additions & 2 deletions services/friendbot/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM golang:1.22-bullseye as build
FROM golang:1.23-bullseye as build

ADD . /src/friendbot
WORKDIR /src/friendbot
RUN go build -o /bin/friendbot ./services/friendbot

FROM ubuntu:22.04
FROM ubuntu:24.04

RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ca-certificates
COPY --from=build /bin/friendbot /app/
Expand Down
4 changes: 2 additions & 2 deletions services/horizon/docker/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22-bullseye AS builder
FROM golang:1.23-bullseye AS builder

ARG VERSION="devel"
WORKDIR /go/src/github.com/stellar/go
Expand All @@ -8,7 +8,7 @@ COPY . ./
ENV GOFLAGS="-ldflags=-X=github.com/stellar/go/support/app.version=${VERSION}-(built-from-source)"
RUN go install github.com/stellar/go/services/horizon

FROM ubuntu:22.04
FROM ubuntu:24.04
ARG STELLAR_CORE_VERSION
ENV STELLAR_CORE_VERSION=${STELLAR_CORE_VERSION:-*}
ENV STELLAR_CORE_BINARY_PATH /usr/bin/stellar-core
Expand Down
4 changes: 2 additions & 2 deletions services/keystore/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM golang:1.19.1 as build
FROM golang:1.23.1 as build

ADD . /src/keystore
WORKDIR /src/keystore
RUN go build -o /bin/keystored ./services/keystore/cmd/keystored


FROM ubuntu:18.04
FROM ubuntu:24.04

RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates
ADD ./services/keystore/migrations/ /app/migrations/
Expand Down
4 changes: 2 additions & 2 deletions services/regulated-assets-approval-server/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM golang:1.22-bullseye as build
FROM golang:1.23-bullseye as build

ADD . /src/regulated-assets-approval-server
WORKDIR /src/regulated-assets-approval-server
RUN go build -o /bin/regulated-assets-approval-server ./services/regulated-assets-approval-server


FROM ubuntu:22.04
FROM ubuntu:24.04

RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates
COPY --from=build /bin/regulated-assets-approval-server /app/
Expand Down
4 changes: 2 additions & 2 deletions services/ticker/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM golang:1.19.1 as build
FROM golang:1.23.1 as build

ADD . /src/ticker
WORKDIR /src/ticker
RUN go build -o /bin/ticker ./services/ticker


FROM ubuntu:22.04
FROM ubuntu:24.04

RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ca-certificates
COPY --from=build /bin/ticker /app/
Expand Down
2 changes: 1 addition & 1 deletion services/ticker/docker/Dockerfile-dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19.1 as build
FROM golang:1.23.1 as build

LABEL maintainer="Alex Cordeiro <alexc@stellar.org>"

Expand Down