diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..bc6c2c6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM registry.access.redhat.com/rhel7:7.5 + +USER root + +RUN yum install -y wget telnet bind-utils iputils + +CMD tail -f /dev/null + +USER 1001