cert-manager/hack/ubuntu-nsenter/Dockerfile
James Munnelly a6edfaf78b Add e2e test framework and basic Issuer test
Update Makefile and travis to run e2e tests

Add ubuntu-nsenter image

Fix typo in target name

Add image pull policy flag for e2e tests

Set config path env vars for e2e tests
2017-09-08 16:25:21 +01:00

13 lines
494 B
Docker

FROM ubuntu:14.04
RUN apt-get update && \
apt-get install -y git build-essential libncurses5-dev libslang2-dev gettext zlib1g-dev libselinux1-dev debhelper lsb-release pkg-config po-debconf autoconf automake autopoint libtool bison
RUN git clone git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git util-linux
RUN cd util-linux/ && \
./autogen.sh && \
./configure --without-python --disable-all-programs --enable-nsenter && \
make
RUN mv /util-linux/nsenter /nsenter