systemtap/Dockerfile
Tomas Tomecek 2702c5d9f3 multiple:
* bump to F29
* remove "release"
* get rid of $FGC

Signed-off-by: Tomas Tomecek <ttomecek@redhat.com>
2018-08-21 09:01:24 +02:00

17 lines
690 B
Docker

FROM registry.fedoraproject.org/fedora:29
LABEL maintainer "Tomas Tomecek \"ttomecek@redhat.com\""
ENV NAME=systemtap VERSION=0 ARCH=x86_64
LABEL com.redhat.component="$NAME" \
name="$NAME" \
version="$VERSION" \
architecture="$ARCH" \
run="docker run --security-opt label:disable --cap-add SYS_MODULE -v /sys/kernel/debug:/sys/kernel/debug -v /usr/src/kernels:/usr/src/kernels -v /usr/lib/modules/:/usr/lib/modules/ -v /usr/lib/debug:/usr/lib/debug -t -i --name NAME IMAGE" \
summary="programmable system-wide instrumentation system"
RUN dnf install -y systemtap-testsuite systemtap systemtap-client && \
dnf clean all
COPY ./root /
CMD ["/bin/bash"]