summaryrefslogtreecommitdiffstats
path: root/clover/clovisor/Dockerfile
blob: 63375a1276b1c90426c79700a8686b12818b2c7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM ubuntu:18.04

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; \
  apt-get update -y; \
  DEBIAN_FRONTEND=noninteractive apt-get install -y \
    auditd \
    bcc-tools \
    linux-headers-$TARGET_KERNEL_VER \
    libelf1;

COPY . .
COPY bin/clovisor .
RUN chmod +x clovisor

CMD ["./clovisor"]