gpt4 book ai didi

docker - 用于网络 Rust 二进制的最小 Docker

转载 作者:行者123 更新时间:2023-12-03 08:18:59 25 4
gpt4 key购买 nike

我有一个 Rust 二进制文件,我想将其放入 docker 镜像中。为了最小化图像尺寸,我用过http://github.com/larsks/dockerize/它添加了 libc 和一些 nss 库文件。但是它无法解析 DNS,我想知道 reqwesthyper 的隐藏系统文件依赖项是什么。


这是一个例子:

cargo .toml

[package]                                                                                                                                                                                                                                  
name = "example"
version = "0.1.0"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
reqwest = { version = "0.11.4", default-features = false, features = ["json", "rustls-tls"] }
tokio = { version = "1.8.1", features = [ "full" ] }

src/main.rs

#[tokio::main]                                                                                                                                                                                                                            
async fn main() {
println!("{:?}", reqwest::get("https://bing.com").await);
}

使用证书和 strace 构建镜像:

❯ dockerize --tag test --add-file /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt --add-file /usr/bin/strace /usr/bin/strace --add-file $(pwd)/target/debug/example /app/example

Successfully tagged test:latest

生成的 Docker 镜像:

│ Current Layer Contents ├───────────────────────────────────────────────────────────────────────────────────────────
Permission UID:GID Size Filetree
-rw-r--r-- 0:0 25 B ├── Dockerfile
drwxr-xr-x 0:0 60 MB ├── app
-rwxr-xr-x 0:0 60 MB │ └── example
drwxr-xr-x 0:0 203 kB ├── etc
-rw-r--r-- 0:0 126 B │ ├── group
-rw-r--r-- 0:0 76 B │ ├── nsswitch.conf
-rw-r--r-- 0:0 513 B │ ├── passwd
drwxr-xr-x 0:0 202 kB │ └── ssl
drwxr-xr-x 0:0 202 kB │ └── certs
-r--r--r-- 0:0 202 kB │ └── ca-certificates.crt
drwxr-xr-x 0:0 343 kB ├── lib64
-rwxr-xr-x 0:0 222 kB │ ├── ld-linux-x86-64.so.2
-rwxr-xr-x 0:0 40 kB │ ├── libnss_compat.so.2
-rwxr-xr-x 0:0 31 kB │ ├── libnss_dns.so.2
-rwxr-xr-x 0:0 51 kB │ └── libnss_files.so.2
drwxr-xr-x 0:0 4.2 MB └── usr
drwxr-xr-x 0:0 4.2 MB └── lib
-rwxr-xr-x 0:0 2.2 MB ├── libc.so.6
-rwxr-xr-x 0:0 23 kB ├── libdl.so.2
-rw-r--r-- 0:0 476 kB ├── libgcc_s.so.1
-rwxr-xr-x 0:0 1.3 MB ├── libm.so.6
-rwxr-xr-x 0:0 40 kB ├── libnss_compat.so.2
-rwxr-xr-x 0:0 31 kB ├── libnss_dns.so.2
-rwxr-xr-x 0:0 51 kB ├── libnss_files.so.2
-rwxr-xr-x 0:0 154 kB └── libpthread.so.0

运行二进制文件失败,并显示“设备或资源繁忙”消息:

❯ docker run test /app/example
Err(reqwest::Error { kind: Request, url: Url { scheme: "https", cannot_be_a_base: false, username: "", password: None, host: Some(Domain("bing.com")), port: None, path: "/", query: None, fragment: None }, source: hyper::Error(Connect, ConnectError("dns error", Os { code: 16, kind: ResourceBusy, message: "Device or resource busy" })) })

令人困惑的是,ping 二进制文件在同一环境中却可以正常工作。这意味着 reqwesthyper 需要额外的设置或文件。我运行 strace 来找出他们需要什么,但找不到。我还尝试了 reqwesttrust-dns 功能,它仅适用于某些域。

这是二进制文件的 strace:

❯ docker run test strace /app/example 2>&1 | rg open
openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/glibc-hwcaps/x86-64-v3/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/glibc-hwcaps/x86-64-v2/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/tls/x86_64/x86_64/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/tls/x86_64/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/tls/x86_64/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/tls/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/x86_64/x86_64/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/x86_64/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/x86_64/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
openat(AT_FDCWD, "/usr/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
openat(AT_FDCWD, "/usr/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
openat(AT_FDCWD, "/usr/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
openat(AT_FDCWD, "/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
openat(AT_FDCWD, "/proc/self/maps", O_RDONLY|O_CLOEXEC) = 3
openat(AT_FDCWD, "/proc/self/cgroup", O_RDONLY|O_CLOEXEC) = 3

我应该在图像中添加什么,以便 reqwest+hyper 与 tls 一起工作?

最佳答案

另一种解决方案是将 Hyper 配置为不使用 getaddrinfo 并将地址解析完全保留在 rust 中。

您可以在 Reqwest 中通过在 crate 上设置 trust_dns 功能来执行此操作,这使其使用 trust_dns_resolver而不是 getaddrinfo

关于docker - 用于网络 Rust 二进制的最小 Docker,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68397898/

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