Skip to content

Commit

Permalink
Fix isis-asp recipe on substituting asp version in yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
chbrandt committed Nov 14, 2023
1 parent c6bfb16 commit f55bbca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dockerfiles/isisasp.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ ARG ASP_VERSION=""
COPY isisasp.yml /tmp/asp.tmp

RUN [ -n "${ASP_VERSION}" ] && \
sed "s/\(.*stereo-pipeline\).*/\1=$ASP_VERSION/" /tmp/asp.tmp \
sed "s/\(.*- stereo-pipeline\).*/\1=$ASP_VERSION/" /tmp/asp.tmp \
> /tmp/asp.yml || \
cp /tmp/asp.tmp /tmp/asp.yml

RUN source activate isis && \
mamba install --file /tmp/asp.yml && \
conda clean -a
mamba env update --file /tmp/asp.yml && \
mamba clean -a

## Write a README file for user
#
Expand Down

0 comments on commit f55bbca

Please sign in to comment.