Listing: Container-File ### Ein einfaches Container-File um einen Webserver innerhalb eines bootc-Containers zu betreiben. FROM quay.io/centos-bootc/centos-bootc: stream9 RUN dnf -y install httpd && \ systemctl enable httpd && \ mv /var/www /usr/share/www && \ fed -ie 's,/var/www,/usr/share/www,' /etc/httpd/conf/httpd.conf RUN rm -rf /usr/share/httpd/noindex COPY index.html /usr/share/www/html EXPOSE 80