1 回答

TA貢獻(xiàn)2016條經(jīng)驗(yàn) 獲得超9個(gè)贊
關(guān)閉 CGO,因?yàn)檫@會(huì)導(dǎo)致到 libc/libmusl 的動(dòng)態(tài)鏈接。
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build \
-ldflags="-w -s" -o $PROJ_BIN_PATH ./cmd/...
二進(jìn)制文件的無此類文件或目錄錯(cuò)誤表示您沒有使用正確的名稱調(diào)用二進(jìn)制文件,或者您的二進(jìn)制文件動(dòng)態(tài)鏈接到不存在的庫。
您可以使用 來檢查動(dòng)態(tài)鏈接ldd,例如:
docker build --target=0 -t your_go_image .
docker run -it --rm your_go_image ldd /$PROJ_NAME
這是我自己的項(xiàng)目之一的示例:
$ go build -o test .
$ ldd test
linux-vdso.so.1 (0x00007ffd2ebd8000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f2dda9ed000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f2dda64e000)
/lib64/ld-linux-x86-64.so.2 (0x00007f2ddac0a000)
$ CGO_ENABLED=0 go build -o test .
$ ldd test
not a dynamic executable
- 1 回答
- 0 關(guān)注
- 196 瀏覽
添加回答
舉報(bào)