-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add ubuntu-2.6.0 dockerfile * Add build-essential * Bump dylib minor version up * Use Conda for Mac PDAL releases * Use Conda for both linux and macos builds
- Loading branch information
Showing
14 changed files
with
107 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=1.9.6 | ||
sbt.version=1.9.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM pdal/pdal:2.6.0 | ||
LABEL Grigory Pomadchin <[email protected]> | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN set -ex && \ | ||
apt update -y && \ | ||
apt install --no-install-recommends -y openjdk-8-jdk | ||
|
||
ENV JAVA_HOME /usr/lib/jvm/java-1.8.0-openjdk-amd6 | ||
RUN update-alternatives --set java `update-alternatives --list java | grep java-8` | ||
|
||
RUN apt-get -y install bash gcc g++ cmake wget unzip gpg software-properties-common | ||
|
||
RUN ln -s /opt/conda/envs/pdal/include/pdal /usr/include/pdal && \ | ||
ln -s /usr/include /usr/lib/include && \ | ||
ln -s /opt/conda/envs/pdal/lib /usr/lib/lib && \ | ||
ln -s /opt/conda/envs/pdal/share/* /usr/share/* || true && \ | ||
ln -s /opt/conda/envs/pdal/lib/* /usr/lib/* || true | ||
|
||
# GLIBCXX_3.4.30 | ||
# strings /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | grep GLIBCXX | ||
RUN apt install -y build-essential |