From 72fe3d8a0617f18c9a4563bc250b3041e3fff7ca Mon Sep 17 00:00:00 2001 From: Grant Henke Date: Tue, 5 Feb 2019 22:31:44 -0600 Subject: [PATCH] [docker] Fix missing libsasl2 package on Ubuntu The libsasl2-2 package is missing in the Ubuntu runtime images. In the dev image it is pulled in as a dependency of other dev packages. Without this the runtime image is broken. Change-Id: Ibc33c64c58377cb76dd0cdb2d3fbef956f7f1484 Reviewed-on: http://gerrit.cloudera.org:8080/12381 Tested-by: Grant Henke Reviewed-by: Andrew Wong --- docker/bootstrap-runtime-env.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/bootstrap-runtime-env.sh b/docker/bootstrap-runtime-env.sh index 9188d8d935..e8353c61aa 100755 --- a/docker/bootstrap-runtime-env.sh +++ b/docker/bootstrap-runtime-env.sh @@ -57,6 +57,7 @@ elif [[ -f "/usr/bin/apt-get" ]]; then krb5-admin-server \ krb5-kdc \ krb5-user \ + libsasl2-2 \ libsasl2-modules \ libsasl2-modules-gssapi-mit \ nscd \