本文主要是介绍自己动手打包构建编译cri-dockerd,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.背景
本机是 armv7l架构cpu,发现官方文档中竟然没有,因此需要自己编译下;
[root@container0 ~]# uname -a
Linux container0 5.4.206-v7l.1.el7 #1 SMP Mon Jul 25 14:13:29 UTC 2022 armv7l armv7l armv7l GNU/Linux
2.打包/构建/编译
git clone https://gitee.com/Liyuan-1/cri-dockerd.git
cd cri-dockerd && go mod tidy && export GOARCH=arm && export GOOS=linux && export ARCH=arm && make cri-dockerd
3.参考
【解决方案:unset GOPATH】$GOPATH/go.mod exists but should not
这篇关于自己动手打包构建编译cri-dockerd的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!