blob: 977ef736af1248c118cc17c16dca90c6a2ca7e67 [file] [log] [blame]
Areli Fuss547839b2017-08-22 15:34:37 +03001FROM kibana:4.3.3
2
Gary Wu14475372018-04-11 15:37:14 -07003# Upgrade specific system libraries to fix CVE vulnerabilities
4# bash 4.4.18-2
5# For CVE-2016-0634 CVE-2016-7543
6# curl 7.58.0-2
7# For CVE-2016-7167 CVE-2016-7141
8# krb5 1.16-2
9# For CVE-2018-5709 CVE-2017-15088 CVE-2017-11462
10# openssl 1.1.0h-2
11# For CVE-2016-8610 CVE-2017-3731 CVE-2016-6302 CVE-2016-2181 CVE-2016-2179 CVE-2016-2180 CVE-2016-2109 CVE-2016-2106 CVE-2016-2105 CVE-2016-6303 CVE-2016-2182 CVE-2016-2177 CVE-2016-2176
12# perl 5.26.2-2
13# For CVE-2017-12837 CVE-2017-12883
14# systemd 238-4
15# For CVE-2017-1000082 CVE-2017-9445 CVE-2017-9217
16# wget 1.19.4-1
17# For CVE-2017-13090 CVE-2017-13089 CVE-2016-7098
18# libdb5.3
19# CVE-2016-3418 CVE-2016-0694 CVE-2016-0692 CVE-2016-0689 CVE-2016-0682
20# libc-bin libc6 multiarch-support
21# CVE-2018-1000001 CVE-2017-16997 CVE-2017-1000366 CVE-2015-5180 CVE-2016-5417 CVE-2018-6485 CVE-2017-15804 CVE-2017-15670 CVE-2014-9984 CVE-2014-9761 CVE-2015-8983 CVE-2015-8982
22# libgnutls30
23# CVE-2017-5335 CVE-2017-5337 CVE-2017-5334
24# libgcrypt20
25# CVE-2017-0379
26# libtasn1-6
27# CVE-2018-6003 CVE-2017-10790
28# libldap-2.4-2
29# CVE-2017-17740
30# libpcre3
31# CVE-2015-3217
32# passwd
33# CVE-2017-12424
34# zlib1g
35# CVE-2016-9843 CVE-2016-9841 CVE-2016-9842 CVE-2016-9840
36
37RUN echo "deb http://deb.debian.org/debian buster main" >> /etc/apt/sources.list && \
38 echo "deb http://deb.debian.org/debian buster-updates main" >> /etc/apt/sources.list && \
39 echo "deb http://security.debian.org buster/updates main" >> /etc/apt/sources.list && \
40 apt-get -y update && \
41 apt-get -y --no-install-recommends install \
42 vim=2:7.4.488-7+deb8u3 vim-common=2:7.4.488-7+deb8u3 vim-runtime=2:7.4.488-7+deb8u3 \
43 bash=4.4.18-2 \
44 curl=7.58.0-2 libcurl3=7.58.0-2 \
45 krb5-locales=1.16-2 libgssapi-krb5-2=1.16-2 libkrb5-3=1.16-2 libkrb5support0=1.16-2 \
46 openssl=1.1.0h-2 \
47 perl-base=5.26.2-3 \
48 systemd=238-4 \
49 wget=1.19.4-1 \
50 libdb5.3=5.3.28-13.1+b1 \
51 libc-bin=2.27-3 libc6=2.27-3 multiarch-support=2.27-3 \
52 libgnutls30=3.5.18-1 \
53 libgcrypt20=1.8.2-2 \
54 libtasn1-6=4.13-2 \
55 libldap-2.4-2=2.4.45+dfsg-1 \
56 libpcre3=2:8.39-9 \
57 passwd=1:4.5-1 \
58 zlib1g=1:1.2.8.dfsg-5 && \
59 apt-get -y autoremove
Areli Fuss547839b2017-08-22 15:34:37 +030060
61# install chef-solo
62RUN curl -L https://omnitruck.chef.io/install.sh | bash
63