Skip to content

Commit

Permalink
Install clang via the llvm.sh script.
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryHughes committed Nov 17, 2024
1 parent 90c4b26 commit 1b65c08
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,17 @@ RUN apt-get -y update && apt-get install -y \
vim \
python3-pip \
nodejs \
npm
npm \
lsb-release \
software-properties-common \
gnupg

#
# Clang
#
RUN curl -SL https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.8/clang+llvm-18.1.8-x86_64-linux-gnu-ubuntu-18.04.tar.xz | tar --strip-components 1 -xJC /usr/local

#RUN curl -SL https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.8/clang+llvm-18.1.8-x86_64-linux-gnu-ubuntu-18.04.tar.xz | tar --strip-components 1 -xJC /usr/local
RUN wget -qO- https://apt.llvm.org/llvm.sh | bash -s -- 18

#
# Swift
#
Expand Down

0 comments on commit 1b65c08

Please sign in to comment.