Skip to content
Snippets Groups Projects
Commit 6dc17a09 authored by Nick Bearson's avatar Nick Bearson
Browse files

making sure conda's on $PATH and putting setuptools next to where it's used

parent cd8caf83
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -131,8 +131,11 @@ RUN mkdir -p ${BUILD} && cd ${BUILD} && \
conda install -c conda-forge numpy scipy matplotlib basemap pyhdf netcdf4 && \
rm -rf ${BUILD}
ENV PATH ${OPT}/miniconda/bin:${PATH}
## add uwglance for verifying data, etc.
RUN easy_install -f http://larch.ssec.wisc.edu/cgi-bin/repos.cgi uwglance
RUN conda install -c conda-forge setuptools && \
easy_install -f http://larch.ssec.wisc.edu/cgi-bin/repos.cgi uwglance
# throw in some shell niceties
RUN echo 'alias ls="ls --color=auto"' >> ~/.bashrc && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment