Skip to content

Commit

Permalink
Merge pull request #85 from NCAR/feature/issue_84_python
Browse files Browse the repository at this point in the history
Python Dockerfile with explicit package versions.
  • Loading branch information
michelleharrold authored Mar 25, 2022
2 parents bab7ffd + de7941b commit 0fc7e15
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ RUN yum -y update \
&& rpm -e --nodeps curl bzip2 \
&& yum clean all

RUN conda install -c conda-forge pygrib \
&& conda install -c conda-forge cartopy \
&& conda install -c conda-forge netCDF4 \
&& conda install -c conda-forge pyyaml
RUN conda install -c conda-forge pygrib=2.1.4 \
&& conda install -c conda-forge cartopy=0.20.2 \
&& conda install -c conda-forge netCDF4=1.5.8 \
&& conda install -c conda-forge pyyaml=6.0

ENV MPLCONFIGDIR /home/user
ENV PYTHONDONTWRITEBYTECODE 1

0 comments on commit 0fc7e15

Please sign in to comment.