Update Dockerfile

added a missing &&
master
Carlos A. Gomes 2017-10-04 20:51:11 -03:00 zatwierdzone przez GitHub
rodzic 9c24f163b0
commit b8d3f17299
1 zmienionych plików z 8 dodań i 8 usunięć

Wyświetl plik

@ -9,15 +9,15 @@ ENV COMPOSER_NO_INTERACTION 1
RUN apt-get update -y \
&& apt-get install -y python-software-properties \
&& add-apt-repository -y ppa:ondrej/php \
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 \
build-essential \
ca-certificates \
openssh-client \
php7.1-cli \
nodejs \
curl \
nodejs \
build-essential \
ca-certificates \
openssh-client \
php7.1-cli \
nodejs \
# Slim down image
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/man/?? /usr/share/man/??_* \