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
13 lines
494 B
Docker
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
|