CodeforNepal / nepalmap_app

An application that maps census and other official data for Nepal to make data more easily accessible and understandable to the public. Want to help us? Check out the Wiki.
https://nepalmap.org
MIT License
64 stars 42 forks source link

Remove comment lines from Dockerfile RUN for deprecation reasons #245

Closed cliftonmcintosh closed 5 years ago

cliftonmcintosh commented 5 years ago

There are some empty lines and comments in the Dockerfile that will become errors in the future. This PR removes those lines.

Warning received when running with those lines present:

 Empty continuation line found in:
    RUN set -exu     && apt-get update     && apt-get install -y libgdal-dev=2.1.2+dfsg-5 postgresql-client     && rm -rf /var/lib/apt/lists/*     && wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)"     && chmod +x /usr/local/bin/gosu     && gosu nobody true
[WARNING]: Empty continuation lines will become errors in a future release.