From 9192e010e8b2d55914f4862b79c85e19968b1d8c Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 12 Jan 2026 11:59:37 +0000 Subject: [PATCH] build(docker): add g++ and python3.12-dev to system dependencies --- application/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Dockerfile b/application/Dockerfile index 31904c5a..efdf6908 100644 --- a/application/Dockerfile +++ b/application/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update && \ apt-get install -y software-properties-common && \ add-apt-repository ppa:deadsnakes/ppa && \ apt-get update && \ - apt-get install -y --no-install-recommends gcc wget unzip libc6-dev python3.12 python3.12-venv && \ + apt-get install -y --no-install-recommends gcc g++ wget unzip libc6-dev python3.12 python3.12-venv python3.12-dev && \ rm -rf /var/lib/apt/lists/* # Verify Python installation and setup symlink