I cloned this repo locally to enable backtrace and debug flags in the gfortran build (for setup-wrf), and found that after a fresh container build, metgrid.exe failed to run with a glibc version error.
Cause appears to be that the base image of continuumio/miniconda3 was updated from debian v12 (bookworm) to debian v13 (trixie). Commit: anaconda/docker-images@26adaf2
The tag continuumio/miniconda3:25.3.1-1 appears to be the last image based on bookworm, so I suppose you could pin the builder image in Dockerfile to that tag. I got around the issue locally by changing the setup-wrf base image to debian:trixie-slim where we're just copying the /opt/wrf folder.
I cloned this repo locally to enable backtrace and debug flags in the gfortran build (for setup-wrf), and found that after a fresh container build,
metgrid.exefailed to run with a glibc version error.Cause appears to be that the base image of
continuumio/miniconda3was updated from debian v12 (bookworm) to debian v13 (trixie). Commit: anaconda/docker-images@26adaf2The tag
continuumio/miniconda3:25.3.1-1appears to be the last image based on bookworm, so I suppose you could pin the builder image inDockerfileto that tag. I got around the issue locally by changing thesetup-wrfbase image todebian:trixie-slimwhere we're just copying the/opt/wrffolder.