From d1099a6cc59c881e45cb5a43c94170d682e601fa Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: Mon, 17 Jul 2017 15:58:49 -0400 Subject: [PATCH] Fix integration tests on systems with apparmor When the integration test image is run on a system with apparmor enabled, it needs binaries from the 'apparmor' package, so ensure that it's always there. Signed-off-by: Nalin Dahyabhai --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a50a51f7..be370114 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ FROM golang:1.7 RUN echo 'deb http://httpredir.debian.org/debian jessie-backports main' > /etc/apt/sources.list.d/backports.list RUN apt-get update && apt-get install -y \ + apparmor \ build-essential \ curl \ gawk \