forked from dotnet/dotnet-buildtools-prereqs-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
34 lines (32 loc) · 804 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
FROM mcr.microsoft.com/powershell:6.2.1-ubuntu-18.04
# Install tools used by the VSO build automation.
RUN apt-get update \
&& apt-get install -y \
git \
nodejs \
npm \
tar \
zip \
&& rm -rf /var/lib/apt/lists/* \
&& npm install -g azure-cli@0.9.20 \
&& npm cache clean
# Dependencies for CoreCLR, Mono and CoreFX
RUN apt-get update \
&& apt-get install -y \
autoconf \
automake \
build-essential \
gettext \
libcurl4-openssl-dev \
libgdiplus \
libicu-dev \
libkrb5-dev \
liblttng-ust-dev \
libnuma-dev \
libssl-dev \
libtool \
libunwind8 \
libunwind8-dev \
python3 \
uuid-dev \
&& rm -rf /var/lib/apt/lists/*