fix(compiler/frontend): provide ld in the docker image

the concrete-python docker image didn't have the `ld` binary, which is required during compilation
This commit is contained in:
Ayoub Benaissa
2023-06-07 17:17:16 +01:00
committed by Ayoub Benaissa
parent a689dba8d7
commit 91b4fcc208

View File

@@ -2,4 +2,7 @@ FROM python:3.10-slim
ARG version
# provide the `ld` binary required by the compiler
RUN apt update && apt install -y binutils
RUN pip install --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu concrete-python==${version}