Skip to content

Commit

Permalink
Install postgresql-client-11 as well
Browse files Browse the repository at this point in the history
(works around a packaging bug in postgresql-server-dev-11)
  • Loading branch information
strk committed Feb 18, 2020
1 parent ded072e commit f0f2bfc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/testdata/Dockerfile-postgis
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ 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 apt-get -y update; apt-get -y install \
autoconf \
build-essential \
libxml2-dev \
postgresql-client-11 \
postgresql-server-dev-11 \
zlib1g-dev
RUN dpkg -L postgresql-server-dev-11
RUN wget -O- \
https://github.com/pgpointcloud/pointcloud/archive/v1.2.1.tar.gz \
Expand Down

0 comments on commit f0f2bfc

Please sign in to comment.