Simon Bruder
b98e7c2445
All checks were successful
continuous-integration/drone/push Build is passing
13 lines
230 B
Docker
13 lines
230 B
Docker
FROM httpd:alpine
|
|
|
|
RUN mkdir /srv/www \
|
|
&& touch /srv/www/index.html /srv/www/user /srv/www/mail
|
|
|
|
COPY httpd.conf /usr/local/apache2/conf/httpd.conf
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
EXPOSE 80
|