From bca49289d5144b8967ea5245909acf0fb64c1dd4 Mon Sep 17 00:00:00 2001 From: david-hummingbot <85695272+david-hummingbot@users.noreply.github.com> Date: Thu, 22 Jan 2026 05:13:28 +0800 Subject: [PATCH] Add g++ and build-essential to Dockerfile Added g++ and build-essential to install dependencies. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e1766153..27e4b497 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM continuumio/miniconda3 AS builder # Install build dependencies RUN apt-get update && \ - apt-get install -y python3-dev gcc && \ + apt-get install -y python3-dev gcc g++ build-essential && \ rm -rf /var/lib/apt/lists/* # Set working directory