Which Dockerfile design uses UBI 9 and installs Apache HTTP Server?
Use an empty scratch image and only write the word httpd into a file.
httpd
Start from Ubuntu and install Nginx.
Start FROM ubi9 and install the httpd package with dnf.
FROM ubi9
dnf
Start from UBI 9 but install no web-server package.