diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2019-11-22 18:03:50 +1100 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2020-01-24 09:54:29 -0600 |
commit | 9b96adf33d95272d2ab8dc5f5797fe5b46872936 (patch) | |
tree | 120da7e970c38472ee312df1922346f53a5daa5d | |
parent | 031e3e4c1327589b98e876e8d24ec1dad7b83ffc (diff) | |
download | libgit2-9b96adf33d95272d2ab8dc5f5797fe5b46872936.tar.gz |
docker build: add krb5 libraries and command-line tools
-rw-r--r-- | azure-pipelines/docker/xenial | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/azure-pipelines/docker/xenial b/azure-pipelines/docker/xenial index 19b9fab81..6e3a469ca 100644 --- a/azure-pipelines/docker/xenial +++ b/azure-pipelines/docker/xenial @@ -1,7 +1,7 @@ ARG BASE FROM $BASE AS apt RUN apt-get update && \ - apt-get install -y --no-install-recommends \ + DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ bzip2 \ clang \ cmake \ @@ -9,8 +9,10 @@ RUN apt-get update && \ gcc \ git \ gosu \ + krb5-user \ libcurl4-gnutls-dev \ libgcrypt20-dev \ + libkrb5-dev \ libpcre3-dev \ libssl-dev \ libz-dev \ |