gpt4 book ai didi

go - 为 Go 程序构建最小容器

转载 作者:数据小太阳 更新时间:2023-10-29 03:45:14 25 4
gpt4 key购买 nike

我想使用 Buildah 从头开始​​构建一个微型容器镜像来运行 Go 应用程序。除了应用程序本身,还需要包括哪些其他库等。我认为需要 glibc - 还有其他吗?

所以总而言之,我想我在问“编译后的 Go 应用程序在 Linux 上需要的所有外部依赖项是什么?”

最佳答案

@Dave C 给出了正确回答这个问题的信息。将 ldd 与返回的测试应用程序一起使用:

[bryon@localhost resttest]$ ldd restest
linux-vdso.so.1 (0x00007fff139fe000)
libpthread.so.0 => /lib64/libpthread.so.0 (0x00007fbad6ce2000)
libc.so.6 => /lib64/libc.so.6 (0x00007fbad691f000)
/lib64/ld-linux-x86-64.so.2 (0x00007fbad6f02000)
[bryon@localhost resttest]$

因此对于那些希望使用 Buildah 构建最小容器的人来说,生成它的 BASH 脚本如下所示:

#!/bin/bash
#
# Run this shell script after you have run the command: "buildah unshare"
#
git clone https://github.com/bryonbaker/resttest.git
cd resttest
go build restest.go

container=$(buildah from scratch)
mnt=$(buildah mount $container)
mkdir $mnt/bin
mkdir $mnt/lib64
buildah config --workingdir /bin $container
buildah copy $container restest /bin/restest
buildah copy $container /lib64/libpthread.so.0 /lib64
buildah copy $container /lib64/libc.so.6 /lib64
buildah copy $container /lib64/ld-linux-x86-64.so.2 /lib64
buildah config --port 8000 $container
#
# This step is not working properly.
# Need to run with podman -p 8000:8000 --entrypoint /bin/restest restest:latest
buildah config --entrypoint /bin/restest $container
buildah commit --format docker $container restest:latest

这会为一个简单的微服务生成一个 14MB 的容器!没有额外的文件需要担心漏洞等。

我有一个小缺陷,我无法在入口点上解决,所以我在开始时覆盖了入口点,但为了测试它是否运行:

podman -p8000:8000 --entrypoint /bin/restest restest:latest

然后只需在终端 session 中键入以下内容:

curl http://localhost:8000

非常感谢 Dave C!

关于go - 为 Go 程序构建最小容器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57265196/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com