[CI] Try to make composer run
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Simon Cornet 2023-07-03 11:19:38 +02:00
parent f037b04cdf
commit cbd04c428a

View File

@ -6,19 +6,19 @@ RUN set -e && ln -sf bash /bin/sh
RUN set -e \ RUN set -e \
&& apt -y update \ && apt -y update \
&& apt -y upgrade \ && apt -y upgrade \
&& apt -y install --no-install-recommends --no-install-suggests ca-certificates git \ && apt -y install --no-install-recommends --no-install-suggests ca-certificates composer git \
&& apt -y autoremove \ && apt -y autoremove \
&& apt clean \ && apt clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# install plugins using composer # install plugins using composer
RUN set -e \ RUN set -e && /usr/bin/composer \
/usr/bin/composer \
--working-dir=/usr/src/roundcubemail/ \ --working-dir=/usr/src/roundcubemail/ \
--prefer-dist \ --prefer-dist \
--prefer-stable \ --prefer-stable \
--update-no-dev \ --update-no-dev \
--no-interaction \ --no-interaction \
--optimize-autoloader \ --optimize-autoloader \
--quiet \
require \ require \
johndoh/contextmenu johndoh/contextmenu