From ad398756a4b9dc560fe903db6b5fba074c274337 Mon Sep 17 00:00:00 2001 From: Rodrigo V Honorato Date: Wed, 20 Mar 2024 14:46:13 +0100 Subject: [PATCH] Update build-essential version in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a52343e..d6a0099 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM continuumio/anaconda3:2022.10 RUN apt-get update && \ apt-get install -y --no-install-recommends \ - build-essential \ + build-essential=12.9 \ && \ apt-get clean && rm -rf /var/lib/apt/lists/*