ci(docker): Use Node 8

Yarn complains about it because of grunt-changed, even if it is a dev dependency...
This commit is contained in:
Pierre Rudloff 2019-10-06 23:45:43 +02:00
parent a1148c9100
commit c806b863e4
1 changed files with 1 additions and 1 deletions

View File

@ -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