Commit ff9a1cea authored by Simon Cornet's avatar Simon Cornet
Browse files

[CI] Try to make composer run

parent cbd04c42
Loading
Loading
Loading
Loading
+12 −11
Original line number Diff line number Diff line
@@ -6,13 +6,14 @@ RUN set -e && ln -sf bash /bin/sh
RUN set -e \
      && apt -y update \
      && apt -y upgrade \
      && apt -y install --no-install-recommends --no-install-suggests ca-certificates composer git \
      && apt -y install --no-install-recommends --no-install-suggests ca-certificates git \
      && apt -y autoremove \
      && apt clean \
      && rm -rf /var/lib/apt/lists/*

# install plugins using composer
RUN set -e && /usr/bin/composer \
RUN set -e \
      && /usr/bin/composer \
        --working-dir=/usr/src/roundcubemail/ \
        --prefer-dist \
        --prefer-stable \