File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 22
22
FROM ubuntu:20.04 AS builder
23
23
24
24
ARG GO_VERSION
25
- ENV GO_VERSION=1.19.4
25
+ ENV GO_VERSION=1.20
26
26
27
27
RUN apt-get update --fix-missing
28
28
RUN apt-get install -y wget git gcc
@@ -36,7 +36,7 @@ ENV GOPATH /go
36
36
ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH
37
37
RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
38
38
39
- RUN go install github.com/cosmos/cosmos-sdk/cosmovisor/cmd/cosmovisor@v1.0 .0
39
+ RUN go install github.com/cosmos/cosmos-sdk/cosmovisor/cmd/cosmovisor@v1.3 .0
40
40
41
41
# ###########################
42
42
# STEP 2 build node image
Original file line number Diff line number Diff line change 20
20
FROM ubuntu:20.04 AS builder
21
21
22
22
ARG GO_VERSION
23
- ENV GO_VERSION=1.19.4
23
+ ENV GO_VERSION=1.20
24
24
25
25
RUN apt-get update
26
26
RUN apt-get install -y wget git gcc make
@@ -47,4 +47,4 @@ COPY docs/static ./docs/static/
47
47
48
48
ARG DCL_VERSION
49
49
ARG DCL_COMMIT
50
- RUN LEDGER_ENABLED=false make
50
+ RUN LEDGER_ENABLED=true make
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ FROM node
6
6
7
7
# Install golang
8
8
ARG GO_VERSION
9
- ENV GO_VERSION=${GO_VERSION:-1.18 }
9
+ ENV GO_VERSION=${GO_VERSION:-1.20 }
10
10
ENV BASH_ENV=/etc/bashrc
11
11
ENV PATH="${PATH}:/usr/local/go/bin"
12
12
RUN curl -L https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz -o /tmp/go.tar.gz \
You can’t perform that action at this time.
0 commit comments