forked from silkeh/docker-clang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3.5.Dockerfile
More file actions
24 lines (19 loc) · 708 Bytes
/
3.5.Dockerfile
File metadata and controls
24 lines (19 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM debian:buster
# Install dependencies
RUN apt-get -qq update && \
apt-get install -qqy --no-install-recommends \
ca-certificates \
autoconf automake cmake dpkg-dev file git make patch \
libc-dev libc++-dev libgcc-7-dev libstdc++-7-dev \
dirmngr gnupg2 lbzip2 wget xz-utils libtinfo5 && \
rm -rf /var/lib/apt/lists/*
# Signing keys
ENV GPG_KEYS 09C4E7007CB2EFFB A2C794A986419D8A B4468DF4E95C63DC D23DD2C20DD88BA2 8F0871F202119294 0FC3042E345AD05D
# Retrieve keys
RUN gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys $GPG_KEYS
# Version info
ENV LLVM_RELEASE 3.5
ENV LLVM_VERSION 3.5.2
# Install Clang and LLVM
COPY install.sh .
RUN ./install.sh