Skip to content

Commit cbdf383

Browse files
committed
Update Dockerfile
1 parent 34eaa14 commit cbdf383

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

dockerfile/Dockerfile

+17
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)