File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ COPY . .
6
6
RUN apt-get update && apt-get install -y python3-pip build-essential wget
7
7
8
8
# Install libclang via development branch on https://apt.llvm.org/
9
- RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
10
- RUN echo 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-12 main' | tee -a /etc/apt/sources.list
11
- RUN echo 'deb-src http://apt.llvm.org/focal/ llvm-toolchain-focal-12 main' | tee -a /etc/apt/sources.list
12
- RUN apt-get install -y libclang-12-dev python3-clang-12
9
+ RUN wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -;\
10
+ echo 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-12 main' | tee -a /etc/apt/sources.list;\
11
+ echo 'deb-src http://apt.llvm.org/focal/ llvm-toolchain-focal-12 main' | tee -a /etc/apt/sources.list;\
12
+ apt-get install -y libclang-12-dev python3-clang-12
13
13
14
14
RUN pip install -r requirements.txt
15
15
You can’t perform that action at this time.
0 commit comments