We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9a18f0 commit 5eaa0adCopy full SHA for 5eaa0ad
Dockerfile
@@ -1,9 +1,9 @@
1
# --- Build Stage ---
2
-# THIS IS THE FIX: Use the Alpine variant of the Rust image
3
FROM rust:alpine AS builder
4
5
-# Install Git, which is needed by cargo
6
-RUN apk add --no-cache git
+# THIS IS THE FIX:
+# Install the C compiler toolchain (build-base) along with git.
+RUN apk add --no-cache git build-base
7
8
WORKDIR /app
9
0 commit comments