Skip to content

Commit

Permalink
add dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
itaysk committed Dec 26, 2019
1 parent 39c28ae commit 6121f73
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# must run privileged and with linux headers and debugfs mounted
# docker run --name tracee --rm --privileged -v /lib/modules/:/lib/modules/ -v /usr/src:/usr/src -v /sys/kernel/debug:/sys/kernel/debug tracee:t2
FROM ubuntu:bionic

RUN echo "deb [trusted=yes] http://repo.iovisor.org/apt/bionic bionic main" > /etc/apt/sources.list.d/iovisor.list && \
apt-get -y update && \
apt-get -y install python bcc-tools

WORKDIR /tracee
COPY . /tracee
ENTRYPOINT ["python", "start.py"]

0 comments on commit 6121f73

Please sign in to comment.