Hi Parth,
I've pushed the new latest tag which is a complete dev environment and it may not require any new packages installed to run coupled WRF (I haven't tested it yet). You can get it with the following
$ docker pull wrfhydro/dev
It's considered bad security practice to push Docker images with default sudo root access so that is why we don't do it. If the latest dev image doesn't have everything you want installed you can get the
Dockerfile from github repository and remove the two lines near the end of the file
```
USER docker
WORKDIR /home/docker
```
Then you can run the command "docker build -t wrfhydro/dev:local ." and "docker run -it wrfhydro/dev:local" to build and run the Docker image with root access. You'll then be able to use apt-get to install packages.
Cheers,
Soren