Skip to content
Snippets Groups Projects
Select Git revision
  • 72ccd6ad5e04b6a1332a97a29f450d57aa88082a
  • main default protected
  • auth_res
3 results

Dockerfile

Blame
  • Forked from TO / docker-roundcube
    17 commits behind the upstream repository.
    Andrej Ramašeuski's avatar
    Andrej Ramašeuski authored
    72ccd6ad
    History
    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 \
        ;