From a1148c9100cc252a2810ba20984c9b4c3c2c371a Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Sun, 6 Oct 2019 23:36:42 +0200 Subject: [PATCH 1/2] ci(docker): Cleaner Composer output --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0bf3b46..9744b37 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN a2enmod rewrite RUN curl -sS https://getcomposer.org/installer | php COPY resources/php.ini /usr/local/etc/php/ COPY . /var/www/html/ -RUN php composer.phar install --prefer-dist +RUN php composer.phar install --prefer-dist --no-progress RUN yarn install --prod RUN yarn grunt ENV CONVERT=1 From c806b863e44b2c2254eab2a329251b2845c7f0e0 Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Sun, 6 Oct 2019 23:45:43 +0200 Subject: [PATCH 2/2] ci(docker): Use Node 8 Yarn complains about it because of grunt-changed, even if it is a dev dependency... --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9744b37..b002c5e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM php:7.0-apache RUN apt-get update && apt-get install -my gnupg -RUN curl -sL https://deb.nodesource.com/setup_6.x | bash - +RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list RUN apt-get update