We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34eaa14 commit cbdf383Copy full SHA for cbdf383
dockerfile/Dockerfile
@@ -0,0 +1,17 @@
1
+FROM chbrandt/isis3
2
+
3
+MAINTAINER "Carlos H Brandt <carloshenriquebrandt gmail>"
4
5
+ARG ASP_VERSION='2.6.2'
6
+ARG ASP_ROOT="/opt/asp/${ASP_VERSION}"
7
8
+RUN mkdir -p $ASP_ROOT \
9
+ && TARBALL="StereoPipeline-${ASP_VERSION}-2019-06-17-x86_64-Linux.tar.bz2" \
10
+ && URL="https://github.com/NeoGeographyToolkit/StereoPipeline/releases/download/v${ASP_VERSION}" \
11
+ && cd $ASP_ROOT \
12
+ && curl -L -O "${URL}/${TARBALL}" \
13
+ && tar --strip-components 1 -xjf $TARBALL \
14
+ && rm ${TARBALL}
15
16
+RUN echo "export PATH=${ASP_ROOT}/bin:\$PATH" >> /etc/profile
17
0 commit comments