FROM docker.infra.flowdat.com/fd3/kea-oss-1.4.0:latest WORKDIR /opt/kea RUN wget -O kea-subscription-1.4.0.tar.gz https://ftp.isc.org/isc/kea/private/f62aefe6b659324b/kea-subscription-1.4.0.tar.gz; \ tar xvzf kea-subscription-1.4.0.tar.gz; \ autoreconf --install; \ ./configure --with-dhcp-mysql --enable-shell; \ make; \ make install; \ ldconfig; \ rm -rf /var/lib/apt/lists/*