Files
concrete/docker/Dockerfile.concretefhe-env
Arthur Meyre 05e1227269 chore: update env docker to have runtime lib path in LD_PRELOAD
- update the rest of the dockers, script and CI to stop setting LD_PRELOAD
2021-10-07 09:58:23 +02:00

19 lines
474 B
Docker

FROM ghcr.io/zama-ai/zamalang-compiler
RUN apt-get update && apt-get upgrade --no-install-recommends -y && \
apt-get install --no-install-recommends -y \
curl \
python3.8 \
python3.8-tk \
python3.8-venv \
python-is-python3 \
git \
graphviz* \
pandoc \
shellcheck && \
rm -rf /var/lib/apt/lists/* && \
pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir poetry
ENV LD_PRELOAD=${RT_LIB}:${LD_PRELOAD}