Simon Bruder
3b272fa031
All checks were successful
continuous-integration/drone/push Build is passing
11 lines
199 B
Docker
11 lines
199 B
Docker
FROM httpd:alpine
|
|
|
|
RUN mkdir /srv/www
|
|
|
|
COPY assets /usr/local/apache2/conf/assets
|
|
COPY httpd.conf /usr/local/apache2/conf/httpd.conf
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|