Disciplina: TI - Sistemas Operacionais
Banca: CESPE / CEBRASPE
Orgão: SERPRO
Considere o seguinte conteúdo de um dockerfile.
FROM rhel7:latest
USER root
MAINTAINER Joao
RUN yum -y install deltarpm yum-utils --
disablerepo=*-eus-* --disablerepo=*-htb-* *-
sjis-*\
--disablerepo=*-ha-* --disablerepo=*-rt-* --
disablerepo=*-lb-* --disablerepo=*-rs-* --
disablerepo=*-sap-*
RUN yum-config-manager --disable *-eus-* *-htb-*
*-ha-* *-rt-* *-lb-* *-rs-* *-sap-* *-sjis* >
/dev/null
RUN yum install httpd procps-ng MySQL-python -y
ADD action /var/www/cgi-bin/action
RUN echo "PassEnv DB_SERVICE_SERVICE_HOST" >>
/etc/httpd/conf/httpd.conf
RUN chown root:apache /var/www/cgi-bin/action
RUN chmod 755 /var/www/cgi-bin/action
RUN echo "Pagina Inicial" >
/var/www/html/index.html
EXPOSE 80
CMD mkdir /run/httpd ; /usr/sbin/httpd -D
FOREGROUND
Tendo como referência essas informações, julgue o item a seguir.
A imagem base do container é um Red Hat Linux.