


Note: krb5-user installation is interactive, you need to set DEBIAN_FRONTEND=noninteractive to make it unattended. RUN pip install -no-cache-dir -r requirements.txt

RUN apt-get update & apt-get install -y libsasl2-dev libsasl2-2 libsasl2-modules-gssapi-mit openssl libkrb5-dev krb5-config krb5-user Your Dockerfile should look like this: FROM python:3.5.7-buster Krb5-user - basic programs to authenticate using MIT Kerberos The package that contains the /usr/bin/kinit binary is the krb5-user package: # dpkg -S /usr/bin/kinit Kinit-dev - process launcher to speed up launching KDE applications Kinit - process launcher to speed up launching KDE applications

The kinit Debian package is not-related to Kerberos: # apt-cache search kinit Python error when running os.system(kinit) - sh: 1: kinit: not found I do this step by step like this as Knud Larsen instruction: % tar -zxvf HTK-3.4.1.tar.gz INSTALL HTS 2.3 for HTK 3.4.1 on Ubuntu 16.04 has errorįor resolve this two Error I specify the ARCH in. You need a -y parameter for apt FROM node:latestĪpt-get -yqq install krb5-user libpam-krb5 & \Īnd remember, that each RUN directive create one additional layer in the image, so it will be nice to reduce the amount of this directives. Unattended install of krb5-user on Ubuntu 16.04įor an unattended installation try setting DEBIAN_FRONTEND variable to noninteractive with:Īpt-get install -y krb5-user How to install kerberos client in docker?
