1FROM centos:7 2 3USER root 4 5RUN yum -y install autoconf bison curl \ 6 gcc git gnupg make re2c wget \ 7 ghostscript libxml2-dev 8 9# Make the default directory you 10WORKDIR /var/app 11 12CMD tail -f /var/app/README.md 13 14