Skip to content

Commit

Permalink
services/regulated-assets-approval-server: bump the Go version in Doc…
Browse files Browse the repository at this point in the history
…kerfile that it was missed in stellar#5249 (stellar#5294)

### What

Bump the Go version in Dockerfile that it was missed in stellar#5249

### Why

The toolchain command in go.mod was requiring a Go version newer than the one in the Dockerfile, which was causing docker-build [to fail](https://stellarfoundation.slack.com/archives/C018BLTP2AU/p1714004215758189).

Toolchain command:
https://github.com/stellar/go/blob/ee9bbbf03be79bbac4000ea97b874ed010757b1b/go.mod#L3-L5

Container version incompatible with that toolchain version:
https://github.com/stellar/go/blob/ee9bbbf03be79bbac4000ea97b874ed010757b1b/services/regulated-assets-approval-server/docker/Dockerfile#L1
  • Loading branch information
marcelosalloum authored Apr 29, 2024
1 parent a387ffb commit 5f50829
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19.1 as build
FROM golang:1.22-bullseye as build

ADD . /src/regulated-assets-approval-server
WORKDIR /src/regulated-assets-approval-server
Expand Down

0 comments on commit 5f50829

Please sign in to comment.