We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b414ab8 commit e471bd3Copy full SHA for e471bd3
reproducible.Dockerfile
@@ -26,10 +26,12 @@ RUN mkdir -p .cargo && cargo vendor vendor/ > .cargo/config.toml
26
# Stage 2: Build
27
FROM rust@sha256:a31942999645514ff53f470d395a9b3f06e05149faa845732d0cdf132767dcbd AS builder
28
29
-# Install musl toolchain for static linking
+# Install musl toolchain and clang (needed for bindgen)
30
RUN apt-get update && apt-get install -y --no-install-recommends \
31
musl-tools \
32
musl-dev \
33
+ clang \
34
+ libclang-dev \
35
&& rm -rf /var/lib/apt/lists/*
36
37
RUN rustup target add x86_64-unknown-linux-musl
0 commit comments