mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-27 00:33:48 -05:00
19 lines
797 B
Plaintext
19 lines
797 B
Plaintext
FROM kartoza/postgis:11.0-2.5
|
|
|
|
ADD auth_system/certs_keys/postgres.crt /etc/ssl/certs/postgres_cert.crt
|
|
ADD auth_system/certs_keys/postgres.key /etc/ssl/private/postgres_key.key
|
|
ADD auth_system/certs_keys/issuer_ca_cert.pem /etc/ssl/certs/issuer_ca_cert.pem
|
|
|
|
RUN chmod 400 /etc/ssl/private/postgres_key.key
|
|
|
|
# Compile and install PointCloud.
|
|
# NOTE: release 1.2.0 would not build against PostgreSQL-11:
|
|
# https://github.com/pgpointcloud/pointcloud/issues/248
|
|
RUN apt-get -y update; apt-get -y install build-essential autoconf postgresql-server-dev-11 libxml2-dev zlib1g-dev
|
|
RUN wget -O- \
|
|
https://github.com/pgpointcloud/pointcloud/archive/master.tar.gz \
|
|
| tar xz && \
|
|
cd pointcloud-master && \
|
|
./autogen.sh && ./configure && make && make install && \
|
|
cd .. && rm -Rf pointcloud-master
|