FROM fedora:latest RUN dnf -y install httpd psmsic ; yum clean all; systemctl enable httpd; RUN echo "Hello administrator" > /var/www/html/index.html RUN mkdir /etc/systemd/system/httpd.service.d/; echo -e '[Service]\nRestart=always' > /etc/systemd/system/httpd.service.d/httpd.conf EXPOSE 80 CMD [ "/sbin/init" ]