File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,16 @@ FROM registry.access.redhat.com/ubi9/ubi:9.5 as bp-cli-builder
15
15
RUN yum install --assumeyes \
16
16
make \
17
17
git \
18
- wget
18
+ wget \
19
+ go-toolset
19
20
20
- # Install Go 1.23.7 properly
21
- RUN go install golang.org/dl/go1.23.7 @latest
22
- RUN /root/go/bin/go1.23.7 download
21
+ # Install Go 1.23.6 properly
22
+ RUN go install golang.org/dl/go1.23.6 @latest
23
+ RUN /root/go/bin/go1.23.6 download
23
24
24
25
# Configure the env
25
- ENV PATH="/root/sdk/go1.23.7 /bin:${PATH}"
26
- RUN go1.23.7 env -w GOTOOLCHAIN=go1.23.7 +auto
26
+ ENV PATH="/root/sdk/go1.23.6 /bin:${PATH}"
27
+ RUN go env -w GOTOOLCHAIN=go1.23.6 +auto
27
28
28
29
# Environment variables
29
30
ENV GOOS=linux GO111MODULE=on GOPROXY=https://proxy.golang.org
Original file line number Diff line number Diff line change 1
1
module github.com/openshift/backplane-cli
2
2
3
- go 1.23.7
3
+ go 1.23.6
4
4
5
5
require (
6
6
github.com/Masterminds/semver v1.5.0
You can’t perform that action at this time.
0 commit comments