Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,32 @@ RUN apt-get update \
git \
ca-certificates \
build-essential \
cmake \
autoconf \
automake \
zlib1g-dev \
postgresql-server-dev-all \
postgresql-server-dev-${POSTGRES_VERSION} \
libxml2-dev \
&& rm -rf /var/lib/apt/lists/* \
&& git clone https://github.com/verma/laz-perf.git \
&& cd laz-perf \
&& cmake . \
&& make \
&& make install \
&& cd / \
&& git clone https://github.com/pgpointcloud/pointcloud \
&& cd pointcloud \
&& ./autogen.sh \
&& ./configure --with-pgconfig=/usr/lib/postgresql/${POSTGRES_VERSION}/bin/pg_config CFLAGS="-Wall -Werror -O2 -g" \
&& ./configure CFLAGS="-Wall -Werror -O2 -g" --with-lazperf=/usr/local \
&& make \
&& make install \
&& apt-get purge -y --auto-remove \
git \
ca-certificates \
build-essential \
cmake \
autoconf \
automake \
zlib1g-dev \
postgresql-server-dev-all \
postgresql-server-dev-${POSTGRES_VERSION} \
libxml2-dev