-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Dockerfile to create iwrf-metplus image and update instructions t…
…o use that container
- Loading branch information
1 parent
c9e7704
commit ebba5ac
Showing
2 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
ARG METPLUS_TAG=6.0.0-beta5 | ||
|
||
FROM dtcenter/metplus-analysis:${METPLUS_TAG} | ||
|
||
# install wrf python package from branch in PR NCAR/wrf-python#242 | ||
# because wrf will not install from pip | ||
RUN python3 -m pip install --upgrade pip \ | ||
&& python3 -m pip install git+https://github.com/DWesl/wrf-python.git@cmake-build \ | ||
&& python3 -m pip install cartopy | ||
# && git clone --branch cmake-build https://github.com/DWesl/wrf-python \ | ||
# && cd wrf-python \ | ||
# && pip install . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters