forked from dotnet/dotnet-buildtools-prereqs-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
42 lines (39 loc) · 852 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
FROM alpine:3.9
RUN apk update
RUN apk add --no-cache \
autoconf \
automake \
bash \
build-base \
clang \
clang-dev \
coreutils \
curl \
curl-dev \
gcc \
gettext-dev \
git \
icu-dev \
krb5-dev \
libtool \
libunwind-dev \
linux-headers \
llvm \
make \
openssl \
openssl-dev \
paxctl \
python \
python3 \
python3-dev \
shadow \
sudo \
util-linux-dev \
which \
zlib-dev
RUN apk -X http://dl-cdn.alpinelinux.org/alpine/v3.10/main add --no-cache \
cmake && \
apk -X http://dl-cdn.alpinelinux.org/alpine/edge/main add --no-cache \
userspace-rcu-dev \
lttng-ust-dev \
numactl-dev