From 82d86a9a5dd1c28f4566cb995bc4b2a5a65b66eb Mon Sep 17 00:00:00 2001 From: "Carlos A. Gomes" Date: Wed, 4 Oct 2017 20:36:37 -0300 Subject: [PATCH] Update Dockerfile Fixing missing `\` on line ends --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2b0e277..057712f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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