FROM httpd:alpine

ADD . /usr/local/apache2/htdocs/

RUN	rm /usr/local/apache2/htdocs/index.html && \
	ln -s /usr/local/apache2/htdocs/index.htm /usr/local/apache2/htdocs/index.html

