Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 611 Bytes

File metadata and controls

26 lines (16 loc) · 611 Bytes

wrf-container

Build immutable images for running WRF.

Requirements

Docker is required.

Local development

For local testing, the docker image can be used to build the WRF image. This is a good way to test changes to the scripts.

To build the docker image, run the following command:

    docker build . -t wrf

If building on a Arm-based Mac, the following command should be used to target the correct platform. Otherwise, the build will emulate the amd64 platform and take much longer.

    docker build --build_arg PLATFORM=linux/arm64 . -t wrf