forked from dotnet/dotnet-buildtools-prereqs-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
45 lines (42 loc) · 1.02 KB
/
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
43
44
45
FROM fedora:30
# Install the base toolchain we need to build anything (clang, cmake, make and the like)
# this does not include libraries that we need to compile different projects, we'd like
# them in a different layer.
RUN dnf install -y \
clang \
cmake \
findutils \
gdb \
glibc-langpack-en \
lldb-devel \
llvm-devel \
make \
python \
python2-lldb \
sudo \
which \
&& dnf clean all
# Install tools used by build automation.
RUN dnf install -y \
git \
tar \
procps \
zip \
&& dnf clean all
# Dependencies of CoreCLR, Mono and CoreFX.
RUN dnf install -y \
autoconf \
automake \
compat-openssl10-devel \
glibc-locale-source \
iputils \
krb5-devel \
libcurl-devel \
libgdiplus \
libicu-devel \
libtool \
libunwind-devel \
libuuid-devel \
lttng-ust-devel \
uuid-devel \
&& dnf clean all