What do these Dockerfile instructions do?
FROM nginx:latest COPY index.html /usr/share/nginx/html/
Use the Nginx image as the base and copy the local HTML file into the image's web root.
Delete Nginx and leave an empty image.
Copy the HTML file from a running container to the host.
Start a named container and publish its HTTP port.