diff options
Diffstat (limited to 'base_sdc-kibana/Dockerfile')
-rw-r--r-- | base_sdc-kibana/Dockerfile | 46 |
1 files changed, 24 insertions, 22 deletions
diff --git a/base_sdc-kibana/Dockerfile b/base_sdc-kibana/Dockerfile index be6c77e..9a349df 100644 --- a/base_sdc-kibana/Dockerfile +++ b/base_sdc-kibana/Dockerfile @@ -42,25 +42,27 @@ RUN echo "deb http://deb.debian.org/debian stretch main" >> /etc/apt/sources.lis echo "deb http://security.debian.org buster/updates main" >> /etc/apt/sources.list && \ apt-get -y update && \ apt-get -y --no-install-recommends install \ - vim=2:7.4.488-7+deb8u3 vim-common=2:7.4.488-7+deb8u3 vim-runtime=2:7.4.488-7+deb8u3 \ - bash=4.4.18-3 \ - curl=7.60.0-2 libcurl4=7.60.0-2 \ - krb5-locales=1.16-2 libgssapi-krb5-2=1.16-2 libkrb5-3=1.16-2 libkrb5support0=1.16-2 \ - openssl=1.1.0h-4 \ - perl-base=5.26.2-6 \ - systemd=238-5 \ - wget=1.19.5-1 \ - libdb5.3=5.3.28-13.1+b1 \ - libc-bin=2.27-3 libc6=2.27-3 multiarch-support=2.27-3 \ - libgnutls30=3.5.18-1 \ - libgcrypt20=1.8.2-2 \ - libtasn1-6=4.13-3 \ - libldap-2.4-2=2.4.44+dfsg-5+deb9u1 \ - libpcre3=2:8.39-9 \ - passwd=1:4.5-1 \ - zlib1g=1:1.2.11.dfsg-1 && \ - apt-get -y autoremove - -# install chef-solo -RUN curl -L https://omnitruck.chef.io/install.sh | bash - + vim \ + vim-common \ + vim-runtime \ + bash \ + curl \ + libcurl4 \ + krb5-locales \ + libkrb5-3 \ + #openssl=1.1.0h-4 \ + perl-base \ + systemd \ + wget \ + libdb5.3 \ + libc-bin \ + multiarch-support \ + libgnutls30 \ + libgcrypt20 \ + libtasn1-6 \ + libldap-2.4-2 \ + libpcre3 \ + passwd \ + zlib1g && \ + apt-get -y autoremove && \ + curl -L https://omnitruck.chef.io/install.sh | bash |