diff options
author | Stephen Wong <stephen.kf.wong@gmail.com> | 2018-11-07 07:25:29 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-11-07 07:25:29 +0000 |
commit | c707865a7fd822165a596387c67f7ee1d2c2c9d4 (patch) | |
tree | 32aed58a4f9250959d7428549a48b4890d1a2782 | |
parent | c2e9caca7e742a89ea66afb8445c0ce1055fd4c2 (diff) | |
parent | 26fd36dcbe5445e75013ac42130fc1deb320d380 (diff) |
Merge "Fix Docker build of Clovisor Docker image on OPNFV Jenkins" into stable/gambia
-rw-r--r-- | clover/clovisor/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clover/clovisor/Dockerfile b/clover/clovisor/Dockerfile index 4df4ee5..63375a1 100644 --- a/clover/clovisor/Dockerfile +++ b/clover/clovisor/Dockerfile @@ -1,6 +1,6 @@ FROM ubuntu:18.04 -ARG TARGET_KERNEL_VER +ARG TARGET_KERNEL_VER="4.15.0-36-generic" RUN set -ex; \ echo "deb [trusted=yes] http://repo.iovisor.org/apt/bionic bionic main" > /etc/apt/sources.list.d/iovisor.list; \ @@ -12,6 +12,7 @@ RUN set -ex; \ libelf1; COPY . . +COPY bin/clovisor . RUN chmod +x clovisor CMD ["./clovisor"] |