Update Dockerfile

Fixing missing `\` on line ends
master
Carlos A. Gomes 2017-10-04 20:36:37 -03:00 zatwierdzone przez GitHub
rodzic a8268cb9a3
commit 82d86a9a5d
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -7,7 +7,7 @@ ENV COMPOSER_NO_INTERACTION 1
# Add Node.js repo
RUN \
curl -sL https://deb.nodesource.com/setup_8.x | bash -
curl -sL https://deb.nodesource.com/setup_8.x | bash - \
&& apt-get install --no-install-recommends -y \
curl \
nodejs \
@ -26,6 +26,6 @@ RUN \
# Show versions
&& php -v && node -v && npm -v \
# Install composer
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
&& curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
&& composer selfupdate