From bca9b42c7eadb1914e184c2b9b1010555dbab29d Mon Sep 17 00:00:00 2001 From: Victor Lin <13424970+victorlin@users.noreply.github.com> Date: Mon, 17 Oct 2022 23:11:37 +0000 Subject: [PATCH] squash! Replace build-essential with make, gcc add libc6-dev --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0db1e47e..6b90ba91 100644 --- a/Dockerfile +++ b/Dockerfile @@ -235,6 +235,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ # # First, add system deps for buildingĀ¹: # - gcc: C compiler. +# - libc6-dev: C libraries and header files. # - libopenblas-dev: Contains optimized versions of BLAS and LAPACK. # - libsuitesparse-dev: Contains SuiteSparse. # @@ -246,6 +247,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then \ apt-get update && apt-get install -y --no-install-recommends \ gcc \ + libc6-dev \ libopenblas-dev \ libsuitesparse-dev \ && CVXOPT_SUITESPARSE_INC_DIR=/usr/include/suitesparse \