summaryrefslogtreecommitdiffstats
path: root/clover/clovisor/Dockerfile
diff options
context:
space:
mode:
authorStephen Wong <stephen.kf.wong@gmail.com>2019-01-21 08:38:02 +0000
committerGerrit Code Review <gerrit@opnfv.org>2019-01-21 08:38:02 +0000
commit43e82fbbf2e62d0aa63a06b8ba5d72f78854cc34 (patch)
treead3e40a3f22261e4638f1ccb6b764ff01c1d0c8b /clover/clovisor/Dockerfile
parent963fa93ae151779ce7240656e6f1302a0336244d (diff)
parent6aa27547b71bff174e3017f637a002546033bf39 (diff)
Merge "Various changes to improve Clovisor:"
Diffstat (limited to 'clover/clovisor/Dockerfile')
-rw-r--r--clover/clovisor/Dockerfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/clover/clovisor/Dockerfile b/clover/clovisor/Dockerfile
index 63375a1..06ddd23 100644
--- a/clover/clovisor/Dockerfile
+++ b/clover/clovisor/Dockerfile
@@ -1,6 +1,7 @@
FROM ubuntu:18.04
-ARG TARGET_KERNEL_VER="4.15.0-36-generic"
+# the following is the Linux version for GKE for k8s 1.11.4-gke.8
+ARG TARGET_KERNEL_VER="linux-headers-4.15.0-1023-gcp"
RUN set -ex; \
echo "deb [trusted=yes] http://repo.iovisor.org/apt/bionic bionic main" > /etc/apt/sources.list.d/iovisor.list; \
@@ -8,7 +9,7 @@ RUN set -ex; \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
auditd \
bcc-tools \
- linux-headers-$TARGET_KERNEL_VER \
+ $TARGET_KERNEL_VER \
libelf1;
COPY . .