File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:1
2
2
3
3
4
- FROM golang:1.22 -alpine AS is-builder
4
+ FROM golang:1.23 -alpine AS is-builder
5
5
6
6
ENV PACKAGES curl make git libc-dev bash gcc linux-headers
7
7
RUN apk add --no-cache $PACKAGES
Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:1
2
2
3
3
# build latest tagged gaia
4
- FROM golang:1.22 -alpine AS gaia-builder
4
+ FROM golang:1.23 -alpine AS gaia-builder
5
5
# WORKDIR is set to /go by default
6
6
ARG USE_GAIA_TAG
7
7
ENV GAIA_TAG=${USE_GAIA_TAG}
@@ -43,7 +43,7 @@ RUN go mod tidy
43
43
RUN go list -m github.com/cosmos/cosmos-sdk
44
44
RUN make build
45
45
46
- FROM golang:1.22 -alpine AS is-builder
46
+ FROM golang:1.23 -alpine AS is-builder
47
47
48
48
ENV PACKAGES curl make git libc-dev bash gcc linux-headers
49
49
RUN apk add --no-cache $PACKAGES
You can’t perform that action at this time.
0 commit comments