Skip to content

Commit

Permalink
Alpine dockerfile based on dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed Nov 12, 2018
1 parent f861347 commit 0131654
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions scripts/docker/alpine/Dockerfile
@@ -0,0 +1,31 @@
FROM pdal/alpinebase:latest

RUN \
cd pdal; \
mkdir build; \
cd build; \
cmake .. \
-G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_PLUGIN_PYTHON=ON \
-DBUILD_PLUGIN_NITF=ON \
-DBUILD_PLUGIN_GREYHOUND=ON \
-DBUILD_PLUGIN_CPD=ON \
-DBUILD_PLUGIN_ICEBRIDGE=ON \
-DBUILD_PLUGIN_PGPOINTCLOUD=ON \
-DWITH_LASZIP=ON \
-DWITH_LAZPERF=ON \
-DWITH_LAZPERF=ON \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
; \
ninja install; \
cd /; \
rm -rf pdal; \
\
apk del \
git \
cmake \
ninja \
g++\
;

0 comments on commit 0131654

Please sign in to comment.