From c1c6525f23cca6f309478b4a35025ce4420f973a Mon Sep 17 00:00:00 2001 From: Shenghang Tsai Date: Wed, 4 Dec 2024 10:41:19 +0800 Subject: [PATCH] Update livebook.dockerfile --- docker/livebook.dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" \