Select Git revision
      
  
        Forked from
        TO / docker-roundcube 
 17 commits behind the upstream repository.
              Andrej Ramašeuski authored 
   Dockerfile  585 B 
FROM roundcube/roundcubemail:1.6.4-apache
MAINTAINER Andrej Ramašeuski <andrej.ramaseuski@pirati.cz>
RUN set -ex; \
    apt-get update; \
    apt-get install -y --no-install-recommends \
        git \
    ; \
    \
    composer \
        --working-dir=/usr/src/roundcubemail/ \
        --prefer-dist \
        --prefer-stable \
        --update-no-dev \
        --no-interaction \
        --optimize-autoloader \
        require \
            roundcube/classic \
            johndoh/contextmenu \
            johndoh/globaladdressbook \
            prodrigestivill/gravatar \
    ;