Skip to content

Commit 54d7879

Browse files
committed
fixup! [Dockerfile] add file
1 parent 7fb3d1a commit 54d7879

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ COPY . .
66
RUN apt-get update && apt-get install -y python3-pip build-essential wget
77

88
# 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
1313

1414
RUN pip install -r requirements.txt
1515

0 commit comments

Comments
 (0)