[rust] Install build essentials in the image

This commit is contained in:
JasterV 2026-03-04 00:46:21 +01:00
parent b2c244fecd
commit 38bdb21bfa

View file

@ -3,6 +3,8 @@ FROM rust:1.93.1-slim-bookworm
# Install system dependencies for cargo-binstall and common rust crates
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
libc6 \
build-essential \
ca-certificates \
pkg-config \
libssl-dev \