7 lines
131 B
Docker
7 lines
131 B
Docker
FROM httpd:2.4
|
|
|
|
# Copies your static HTML file into the Apache document root
|
|
COPY index.html /usr/local/apache2/htdocs/
|
|
|
|
EXPOSE 80
|