I\'m new to docker so I might be doing this wrong, but I\'m trying to install Tomcat6 through a Dockerfile which like this:
Dockerfile
FROM rhel7:latest RUN cd
Do not forget you can add all lib and package you need on the same line
RUN cd /tmp \ && apt-get update \ && apt-get install -y curl apt-utils wget unzip\ && rm -rf /var/lib/apt/lists/*