当前位置: 首页 > 工具软件 > Domain Admin > 使用案例 >

bash: ./admin-domain: No such file or directory

卫梓
2023-12-01

问题背景

docker中构建出来的 golang 二进制可执行文件,无法运行的问题。最后一个构建阶段用的是 FROM debian:stable-slim

问题

root@26f0f39f2cf1:/app# ls
admin-domain
root@26f0f39f2cf1:/app# ./admin-domain   
bash: ./admin-domain: No such file or directory
root@26f0f39f2cf1:/app# ldd admin-domain 
        linux-vdso.so.1 (0x00007ffd8c1f5000)
        libc.musl-x86_64.so.1 => not found

原因

ldd 可以看出该可执行文件缺少 libc.musl-x86_64.so.1 => not found 依赖。
使用 apt-get install musl -y 安装就可以了。

 类似资料: