diff --git a/docker/Dockerfile-xenial-pg95 b/docker/Dockerfile-xenial-pg95 deleted file mode 100644 index c8c8d6d8..00000000 --- a/docker/Dockerfile-xenial-pg95 +++ /dev/null @@ -1,73 +0,0 @@ -FROM ubuntu:xenial - -# Use UTF8 to avoid encoding problems with pgsql -ENV LANG C.UTF-8 - -# Add external repos -RUN set -ex \ - && apt-get update \ - && apt-get install -y \ - curl \ - software-properties-common \ - locales \ - && add-apt-repository -y ppa:ubuntu-toolchain-r/test \ - && curl -sL https://deb.nodesource.com/setup_6.x | bash \ - && locale-gen en_US.UTF-8 \ - && update-locale LANG=en_US.UTF-8 - -# Install dependencies and PostGIS 2.4 from sources -RUN set -ex \ - && apt-get update \ - && apt-get install -y \ - g++-4.9 \ - gcc-4.9 \ - git \ - libcairo2-dev \ - libgdal-dev \ - libgdal1i \ - libgeos-dev \ - libgif-dev \ - libjpeg8-dev \ - libjson-c-dev \ - libpango1.0-dev \ - libpixman-1-dev \ - libproj-dev \ - libprotobuf-c-dev \ - libxml2-dev \ - make \ - nodejs \ - pkg-config \ - postgresql-9.5 \ - postgresql-plpython-9.5 \ - postgresql-server-dev-9.5 \ - protobuf-c-compiler \ - redis-server \ - wget \ - && wget http://download.osgeo.org/postgis/source/postgis-2.4.0.tar.gz \ - && tar xvfz postgis-2.4.0.tar.gz \ - && cd postgis-2.4.0 \ - && ./configure \ - && make \ - && make install \ - && cd .. \ - && rm -rf postgis-2.4.0 \ - && wget http://download.redis.io/releases/redis-4.0.8.tar.gz \ - && tar xvzf redis-4.0.8.tar.gz \ - && cd redis-4.0.8 \ - && make \ - && make install \ - && cd .. \ - && rm redis-4.0.8.tar.gz \ - && rm -R redis-4.0.8 \ - && apt-get purge -y wget protobuf-c-compiler \ - && apt-get autoremove -y - -# Configure PostgreSQL -RUN set -ex \ - && echo "listen_addresses='*'" >> /etc/postgresql/9.5/main/postgresql.conf \ - && echo "local all all trust" > /etc/postgresql/9.5/main/pg_hba.conf \ - && echo "host all all 0.0.0.0/0 trust" >> /etc/postgresql/9.5/main/pg_hba.conf \ - && echo "host all all ::1/128 trust" >> /etc/postgresql/9.5/main/pg_hba.conf - -WORKDIR /srv -EXPOSE 5858