diff --git a/docker/livebook.dockerfile b/docker/livebook.dockerfile index df3cb80b..aaedbb54 100644 --- a/docker/livebook.dockerfile +++ b/docker/livebook.dockerfile @@ -9,7 +9,8 @@ RUN apt-get upgrade -y \ # LLVM ADD . /src RUN python3 -m pip install -r /src/dev-requirements.txt -# ENV LLVM_CONFIG_PATH=$(python3 -c 'import mlir;print(mlir.__path__[0])')/bin/llvm-config +RUN ln -s $(python3 -c 'import mlir;print(mlir.__path__[0])') /usr/local/mlir +ENV PATH=/usr/local/mlir:${PATH} RUN llvm-config --version # Zig RUN wget "https://ziglang.org/download/0.13.0/zig-linux-aarch64-0.13.0.tar.xz" -O "zig-linux.tar.xz" \