Skip to content

Commit 750631d

Browse files
committed
Install additional dependencies
1 parent 1b7baa0 commit 750631d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Dockerfile.arm64

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
FROM python:3.12-slim AS triton-builder
22

33
RUN apt-get update -qq && \
4-
apt-get install -qq -y git && \
4+
apt-get install -qq -y \
5+
build-essential \
6+
clang \
7+
cmake \
8+
git \
9+
lld \
10+
llvm && \
511
rm -rf /var/lib/apt/lists/*
612

713
RUN git clone https://github.com/triton-lang/triton.git /tmp/triton \
814
--depth 1 \
915
--branch v3.2.0
1016

17+
ARG TRITON_BUILD_WITH_CLANG_LLD=true
1118
RUN --mount=type=cache,target=/root/.cache/pip \
1219
cd /tmp/triton && \
1320
pip install ninja cmake wheel pybind11 && \

0 commit comments

Comments
 (0)