Blame Dockerfile

c106a70
FROM registry.fedoraproject.org/fedora:rawhide
585145d
LABEL maintainer "Tomas Tomecek \"ttomecek@redhat.com\""
585145d
c106a70
ENV NAME=tools VERSION=0 ARCH=x86_64
585145d
LABEL com.redhat.component="$NAME" \
585145d
      name="$FGC/$NAME" \
585145d
      version="$VERSION" \
585145d
      architecture="$ARCH" \
585145d
      run="docker run -it --name NAME --privileged --ipc=host --net=host --pid=host -e HOST=/host -e NAME=NAME -e IMAGE=IMAGE -v /run:/run -v /var/log:/var/log -v /etc/machine-id:/etc/machine-id -v /etc/localtime:/etc/localtime -v /:/host IMAGE" \
585145d
      summary="container with all the management tools you miss in Atomic Host"
585145d
585145d
# vim-minimal conflicts with vim-enhanced
585145d
RUN dnf remove -y vim-minimal && dnf install -y \
585145d
  bash-completion \
585145d
  bc \
585145d
  bind-utils \
585145d
  blktrace \
585145d
  crash \
585145d
  e2fsprogs \
585145d
  ethtool \
585145d
  file \
585145d
  gcc \
585145d
  gdb \
585145d
  git-core \
585145d
  glibc-utils \
585145d
  gomtree \
585145d
  htop \
585145d
  hwloc \
585145d
  iotop \
585145d
  iproute \
585145d
  iputils \
585145d
  less \
585145d
  ltrace \
585145d
  mailx \
585145d
  net-tools \
585145d
  netsniff-ng \
585145d
  nmap-ncat \
585145d
  numactl \
585145d
  numactl-devel \
585145d
  parted \
585145d
  pciutils \
585145d
  perf \
585145d
  procps-ng \
585145d
  psmisc \
a035f06
  rpm-build \
585145d
  screen \
585145d
  sos \
585145d
  strace \
585145d
  sysstat \
585145d
  tcpdump \
585145d
  tmux \
585145d
  vim-enhanced \
585145d
  xfsprogs \
585145d
  && dnf clean all
585145d
585145d
# FIXME: current go-md2man can't convert tables :<
585145d
COPY ./root/ /
585145d
585145d
CMD ["/usr/bin/bash"]