-
Notifications
You must be signed in to change notification settings - Fork 2
/
Dockerfile
46 lines (45 loc) · 1.11 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
46
FROM ubuntu:18.04
RUN \
apt-get update && \
apt-get -y --no-install-recommends install gnupg ca-certificates curl && \
curl -s https://repos.azul.com/azul-repo.key | gpg --dearmor -o /usr/share/keyrings/azul.gpg && \
echo "deb [signed-by=/usr/share/keyrings/azul.gpg] https://repos.azul.com/zulu/deb stable main" | tee /etc/apt/sources.list.d/zulu.list && \
apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get -y --no-install-recommends install \
ant \
asciidoc \
autoconf \
bash \
build-essential \
curl \
file \
gawk \
gdb \
git \
jq \
libaio-dev \
libasound2-dev \
libc6-dev \
libcap-dev \
libcups2-dev \
libfontconfig1-dev \
libnet-dev \
libnl-3-dev \
libprotobuf-c0-dev \
libprotobuf-dev \
libx11-dev libxext-dev libxrender-dev libxtst-dev libxt-dev libxrandr-dev \
maven \
mercurial \
pkg-config \
protobuf-c-compiler \
protobuf-compiler \
python-ipaddr \
python-protobuf \
sudo \
unzip \
util-linux \
zip \
zulu17-jdk \
&& apt-get clean \
&& rm -rf /var/lib/apt /var/cache/apt