HDDS-8628. Install lsof and netstat in ozone-runner (#19)
diff --git a/Dockerfile b/Dockerfile
index 7ff11d2..a6ae207 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -37,12 +37,12 @@
RUN yum -y install epel-release centos-release-scl
RUN set -eux ; \
yum -y install \
+ cmake3 \
devtoolset-10-gcc-c++ \
make \
+ perl \
which \
- cmake3 \
- perl ; \
- yum clean all
+ && yum clean all
RUN ln -s /usr/bin/cmake3 /usr/bin/cmake
# Add gcc 10 bin path
ENV PATH=/opt/rh/devtoolset-10/root/usr/bin:$PATH
@@ -77,18 +77,20 @@
RUN set -eux ; \
yum install -y \
bzip2 \
+ diffutils \
+ fuse \
java-11-openjdk-devel \
jq \
+ krb5-workstation \
+ lsof \
+ net-tools \
nmap-ncat \
openssl \
python3 python3-pip \
snappy \
sudo \
zlib \
- diffutils \
- krb5-workstation \
- fuse ; \
- yum clean all
+ && yum clean all
RUN sudo python3 -m pip install --upgrade pip
COPY --from=go /go/bin/csc /usr/bin/csc