Skip to content

Commit bb98d29

Browse files
chore: Update go version in docker files (#2541)
Update go version in docker files
1 parent 8309945 commit bb98d29

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33

4-
FROM golang:1.22-alpine AS is-builder
4+
FROM golang:1.23-alpine AS is-builder
55

66
ENV PACKAGES curl make git libc-dev bash gcc linux-headers
77
RUN apk add --no-cache $PACKAGES

Dockerfile.gaia

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33
# build latest tagged gaia
4-
FROM golang:1.22-alpine AS gaia-builder
4+
FROM golang:1.23-alpine AS gaia-builder
55
# WORKDIR is set to /go by default
66
ARG USE_GAIA_TAG
77
ENV GAIA_TAG=${USE_GAIA_TAG}
@@ -43,7 +43,7 @@ RUN go mod tidy
4343
RUN go list -m github.com/cosmos/cosmos-sdk
4444
RUN make build
4545

46-
FROM golang:1.22-alpine AS is-builder
46+
FROM golang:1.23-alpine AS is-builder
4747

4848
ENV PACKAGES curl make git libc-dev bash gcc linux-headers
4949
RUN apk add --no-cache $PACKAGES

0 commit comments

Comments
 (0)