Przeglądaj źródła

Dockerfile: Remove empty line in RUN command

This will throw errors in future Docker versions
Felix Breidenstein 8 lat temu
rodzic
commit
43d48ae2df
1 zmienionych plików z 0 dodań i 1 usunięć
  1. 0 1
      Dockerfile

+ 0 - 1
Dockerfile

@@ -10,7 +10,6 @@ RUN apt-get update && apt-get install -y \
     # We install and enable php-gd
     # We install and enable php-gd
     docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ &&\
     docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ &&\
     docker-php-ext-install -j$(nproc) gd && \
     docker-php-ext-install -j$(nproc) gd && \
-
     # We enable Apache's mod_rewrite
     # We enable Apache's mod_rewrite
     a2enmod rewrite
     a2enmod rewrite