Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make pointcloud building more predictable (use a tagged version)
  • Loading branch information
strk authored and nyalldawson committed Feb 19, 2020
1 parent 7ed4c24 commit 4d02876
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tests/testdata/Dockerfile-postgis
Expand Up @@ -17,8 +17,10 @@ RUN apt-get -y update; apt-get -y install \
postgresql-server-dev-11 \
zlib1g-dev
RUN wget -O- \
https://github.com/pgpointcloud/pointcloud/archive/master.tar.gz \
https://github.com/pgpointcloud/pointcloud/archive/v1.2.1.tar.gz \
| tar xz && \
cd pointcloud-master && \
./autogen.sh && ./configure && make && make install && \
cd .. && rm -Rf pointcloud-master
cd pointcloud-1.2.1 && \
./autogen.sh && \
./configure && \
make && make install && \
cd .. && rm -Rf pointcloud-1.2.1

0 comments on commit 4d02876

Please sign in to comment.