-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from AgPipeline/develop
Merging develop to main branch - no review
- Loading branch information
Showing
7 changed files
with
66 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
FROM ubuntu:18.04 | ||
FROM ubuntu:20.04 | ||
LABEL maintainer="Chris Schnaufer <[email protected]>" | ||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
# Add user | ||
RUN useradd -u 49044 extractor \ | ||
|
@@ -11,11 +12,11 @@ RUN chown -R extractor /home/extractor \ | |
RUN apt-get update && \ | ||
apt-get upgrade -y && \ | ||
apt-get install -y --no-install-recommends \ | ||
python3.7 \ | ||
python3.8 \ | ||
python3-pip && \ | ||
ln -sfn /usr/bin/python3.7 /usr/bin/python && \ | ||
ln -sfn /usr/bin/python3.7 /usr/bin/python3 && \ | ||
ln -sfn /usr/bin/python3.7m /usr/bin/python3m && \ | ||
ln -sfn /usr/bin/python3.8 /usr/bin/python && \ | ||
ln -sfn /usr/bin/python3.8 /usr/bin/python3 && \ | ||
ln -sfn /usr/bin/python3.8m /usr/bin/python3m && \ | ||
apt-get autoremove -y && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
@@ -32,13 +33,13 @@ RUN apt-get update && \ | |
libgdal-dev \ | ||
gcc \ | ||
g++ \ | ||
python3.7-dev && \ | ||
python3.8-dev && \ | ||
python3 -m pip install --upgrade --no-cache-dir \ | ||
wheel && \ | ||
python3 -m pip install --upgrade --no-cache-dir \ | ||
numpy && \ | ||
python3 -m pip install --upgrade --no-cache-dir \ | ||
pygdal==2.2.3.* && \ | ||
pygdal==3.0.4.* && \ | ||
apt-get remove -y \ | ||
libgdal-dev \ | ||
gcc \ | ||
|
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,2 +1 @@ | ||
pdal | ||
liblas-bin |
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,3 +1,2 @@ | ||
liblas | ||
dbfread | ||
agpypeline |