File: Dockerfile

package info (click to toggle)
sysdig 0.35.0%2Brepack-1.1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,600 kB
  • sloc: cpp: 11,020; sh: 1,313; ansic: 999; makefile: 12
file content (20 lines) | stat: -rw-r--r-- 397 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM debian:unstable

MAINTAINER Sysdig <support@sysdig.com>

# Based on the sysdig container, used for building eBPF probe

RUN apt-get update \
 && apt-get dist-upgrade -y \
 && apt-get install -y --no-install-recommends \
	clang \
	gcc \
	libelf-dev \
	libelf1 \
	llvm \
	make \
 && rm -rf /var/lib/apt/lists/*

COPY ./probe-builder-entrypoint.sh /

ENTRYPOINT ["/probe-builder-entrypoint.sh"]