当我使用 CircleCI 构建 Go 镜像时,我得到了 runtime/cgo: pthread_create failed: Operation not allowed
问题:
使用 CircleCI 构建 Go 镜像时,遇到错误:runtime/cgo: pthread_create failed: 操作不允许。
解决方案:
确定 Go 镜像的架构变化发生在 6 月中旬。解决方案是指定 Go 映像的特定版本:
FROM golang:1.19.1
这解决了错误。
其他信息:
CircleCI 需要CircleCI 执行器运行 go mod 下载命令。由于不允许的操作,此命令无法下载模块。随着架构的变化指定Go的特定版本,并需要CircleCI来确保其具有正确的功能。
以上是使用 CircleCI 构建 Go 镜像时如何解决'runtime/cgo: pthread_create failed: Operation not allowed\”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!