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 fc7b5cd commit f810c36Copy full SHA for f810c36
Dockerfile
@@ -3,13 +3,7 @@ FROM ubuntu:20.04
3
WORKDIR /clang-bind
4
COPY . .
5
6
-RUN apt-get update && apt-get install -y python3-pip build-essential wget
7
-
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
- 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
+RUN apt-get update -y && apt-get install -y python3-pip libclang-12-dev python3-clang-12
13
14
RUN pip install -r requirements.txt
15
0 commit comments