Files
concrete/docker/Dockerfile.concrete-python
Ayoub Benaissa 91b4fcc208 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
2023-06-07 17:28:44 +01:00

9 lines
244 B
Docker

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}