13 lines
202 B
Docker
13 lines
202 B
Docker
FROM httpd:alpine
|
|
|
|
RUN mkdir /srv/www \
|
|
&& touch /srv/www/index.html
|
|
|
|
COPY httpd.conf /usr/local/apache2/conf/httpd.conf
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
EXPOSE 80
|