You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not a security-related bug/issue. If it is, please follow please follow the security policy.
I have searched on the issue tracker and the lotus forum, and there is no existing related issue or discussion.
I am running the Latest release, the most recent RC(release canadiate) for the upcoming release or the dev branch(master), or have an issue updating to any of these.
When I try to build a lotus docker image, it fails with below error:
Step 12/79 : RUN make clean deps
---> Running in df52d903b86e
Makefile:14: Your Golang version is go1.18.8
Makefile:15: *** Update Golang to version to at least 1.19.7. Stop.
The command '/bin/sh -c make clean deps' returned a non-zero code: 2
make: *** [Makefile:232: docker/lotus-all-in-one] Error 2
I think requirement is coming from one of the dependencies and as long as user builds Lotus manually outside docker, it will work if they are using go v1.19.x
But, docker is strict in the sense it will use defined image of v1.18.x in the Dockerfile.
Logging Information
Not required
The text was updated successfully, but these errors were encountered:
@rjan90 Hey, I am not able to build Lotus with go 1.18 even outside the container. I think we should update the go.mod file to 1.19 for v.1.21-0-rc1
root@c9ea3db2f2aa:/lotus# make clean all
Makefile:14: Your Golang version is go1.18.8
Makefile:15: *** Update Golang to version to at least 1.19.7. Stop.
root@c9ea3db2f2aa:/lotus# go version
go version go1.18.8 linux/amd64
Checklist
Latest release
, the most recent RC(release canadiate) for the upcoming release or the dev branch(master), or have an issue updating to any of these.Lotus component
Lotus Version
Repro Steps
Try to build the docker image of lotus.
Describe the Bug
When I try to build a lotus docker image, it fails with below error:
I think requirement is coming from one of the dependencies and as long as user builds Lotus manually outside docker, it will work if they are using go v1.19.x
But, docker is strict in the sense it will use defined image of v1.18.x in the Dockerfile.
Logging Information
The text was updated successfully, but these errors were encountered: