Blame Dockerfile

32a28ee
FROM fedora:25
32a28ee
32a28ee
MAINTAINER "Petr Hracek" <phracek@redhat.com>
32a28ee
32a28ee
LABEL summary="Provides a minimal set of packages used for debugging."
32a28ee
LABEL description="The Fedora Debugging Tools Container is a docker-formatted image that includes a minimal set of tools for troubleshooting and investigating a Fedora Host. Designed to run as a privileged container."
32a28ee
LABEL io.k8s.display-name="Fedora Debugging Tools Base"
32a28ee
32a28ee
RUN dnf install -y --setopt=tsflags=nodocs \
32a28ee
    iputils \
32a28ee
    iproute \
32a28ee
    lsof \
32a28ee
    net-tools \
32a28ee
    passwd \
32a28ee
    strace \
32a28ee
    valgrind && \
32a28ee
    dnf -y clean all
32a28ee
32a28ee
CMD ["/usr/bin/bash"]