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

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

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

CMD ["./clovisor"]