debugging-tools/Dockerfile
Petr "Stone" Hracek 32a28ee3c2 Add more tests and dependencies
Signed-off-by: Petr "Stone" Hracek <phracek@redhat.com>
2017-05-09 10:55:00 +02:00

19 lines
597 B
Docker

FROM fedora:25
MAINTAINER "Petr Hracek" <phracek@redhat.com>
LABEL summary="Provides a minimal set of packages used for debugging."
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."
LABEL io.k8s.display-name="Fedora Debugging Tools Base"
RUN dnf install -y --setopt=tsflags=nodocs \
iputils \
iproute \
lsof \
net-tools \
passwd \
strace \
valgrind && \
dnf -y clean all
CMD ["/usr/bin/bash"]