Add libpcre3 to fix itest

Otherwise grep -P doesn't work
This commit is contained in:
Chris Kuehl 2015-09-03 17:54:56 -07:00
parent 7a455de4e3
commit 9decaf3a7a
2 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@ FROM debian:jessie
MAINTAINER Chris Kuehl <ckuehl@yelp.com> MAINTAINER Chris Kuehl <ckuehl@yelp.com>
RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
build-essential devscripts equivs procps psmisc && \ build-essential devscripts equivs procps psmisc libpcre3 && \
apt-get clean apt-get clean
WORKDIR /mnt WORKDIR /mnt

View file

@ -3,7 +3,7 @@ CFLAGS=-std=gnu99 -static -Wall -Werror
DOCKER_RUN_TEST := docker run -v $(PWD):/mnt:ro DOCKER_RUN_TEST := docker run -v $(PWD):/mnt:ro
DOCKER_DEB_TEST := sh -euxc ' \ DOCKER_DEB_TEST := sh -euxc ' \
apt-get update \ apt-get update \
&& apt-get install -y --no-install-recommends procps psmisc \ && apt-get install -y --no-install-recommends procps psmisc libpcre3 \
&& (which timeout || apt-get install -y --no-install-recommends timeout) \ && (which timeout || apt-get install -y --no-install-recommends timeout) \
&& dpkg -i /mnt/dist/*.deb \ && dpkg -i /mnt/dist/*.deb \
&& cd /mnt \ && cd /mnt \
@ -11,7 +11,7 @@ DOCKER_DEB_TEST := sh -euxc ' \
' '
DOCKER_PYTHON_TEST := sh -uexc ' \ DOCKER_PYTHON_TEST := sh -uexc ' \
apt-get update \ apt-get update \
&& apt-get install -y --no-install-recommends python-pip build-essential procps psmisc \ && apt-get install -y --no-install-recommends python-pip build-essential procps psmisc libpcre3 \
&& (which timeout || apt-get install -y --no-install-recommends timeout) \ && (which timeout || apt-get install -y --no-install-recommends timeout) \
&& tmp=$$(mktemp -d) \ && tmp=$$(mktemp -d) \
&& cp -r /mnt/* "$$tmp" \ && cp -r /mnt/* "$$tmp" \