Dockerfile 141 B

12345678
  1. FROM httpd:2.4
  2. ENV app Webserver
  3. LABEL version=1.0.0
  4. COPY index.html /usr/local/apache2/htdocs/
  5. EXPOSE 80
  6. CMD ["httpd", "-D", "FOREGROUND"]