michaelmcandrew / civicrm-buildkit-docker

This is a read only copy. Please make PRs here: https://lab.civicrm.org/michaelmcandrew/civicrm-buildkit-docker
https://lab.civicrm.org/michaelmcandrew/civicrm-buildkit-docker
GNU Affero General Public License v3.0
40 stars 31 forks source link

Empty continuation line #76

Open wmortada opened 2 years ago

wmortada commented 2 years ago

Docker is showing a warning about the empty continuation line in the Dockerfile:

[WARNING]: Empty continuation line found in:
    RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -   && apt-get update   && apt-get install -y --no-install-recommends   bash-completion   default-mysql-client   git   iproute2   less   libc-client-dev   libicu-dev   libjpeg62-turbo-dev   libkrb5-dev   libmagickwand-dev   libpng-dev   libxml2-dev   libzip-dev   msmtp-mta   nano   nodejs   rsync   sudo   unzip   vim   zip   && rm -r /var/lib/apt/lists/*
[WARNING]: Empty continuation lines will become errors in a future release.

I think we just need to remove the blank line.

  zip \

  && rm -r /var/lib/apt/lists/*