diff --git a/Dockerfile b/Dockerfile
index 5478d07a9e7dc005d41ba9dc407649163c068da0..9dbd05bd06e1a9a5f94ffb1e68943a9b7113a1b8 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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 && \