We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85a3861 commit 67d92b5Copy full SHA for 67d92b5
devops/containers/ubuntu2404_base.Dockerfile
@@ -4,6 +4,11 @@ ENV DEBIAN_FRONTEND=noninteractive
4
5
USER root
6
7
+# Configure LLVM nightly repo
8
+RUN apt-get update -qq && apt-get install --no-install-recommends -yqq curl ca-certificates
9
+RUN curl -sSL https://apt.llvm.org/llvm-snapshot.gpg.key -o /etc/apt/trusted.gpg.d/apt.llvm.org.asc
10
+RUN echo 'deb http://apt.llvm.org/noble/ llvm-toolchain-noble main' > /etc/apt/sources.list.d/llvm.list
11
+
12
# Install SYCL prerequisites
13
COPY scripts/install_build_tools.sh /install.sh
14
RUN /install.sh
0 commit comments