From 889c746bc15bd0651b8cd2ef9365f624774a91d4 Mon Sep 17 00:00:00 2001 From: Alan Kahn Date: Tue, 3 Mar 2026 14:53:48 -0500 Subject: [PATCH] fix: add g++ to deploy Dockerfile for cc-rs compilation rust:1.91-slim doesn't include a C++ compiler, which cc-rs needs. The standalone/cluster Dockerfiles use the full rust:1.91 image so they weren't affected. Co-Authored-By: Claude Opus 4.6 --- docker/deploy/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/deploy/Dockerfile b/docker/deploy/Dockerfile index 87e341c..03108ca 100644 --- a/docker/deploy/Dockerfile +++ b/docker/deploy/Dockerfile @@ -1,6 +1,6 @@ FROM rust:1.91-slim AS builder WORKDIR /build -RUN apt-get update && apt-get install -y pkg-config libssl-dev && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y pkg-config libssl-dev g++ && rm -rf /var/lib/apt/lists/* # Copy workspace manifests first for layer caching. COPY Cargo.toml Cargo.lock ./