10 lines
240 B
Docker
10 lines
240 B
Docker
FROM roundcube/roundcubemail:latest-apache
|
|
|
|
COPY entrypoint.sh /entrypoint-custom.sh
|
|
COPY docker-override.inc.php /docker-override.inc.php
|
|
|
|
RUN chmod +x /entrypoint-custom.sh
|
|
|
|
ENTRYPOINT ["/entrypoint-custom.sh"]
|
|
CMD ["apache2-foreground"]
|