on docker compose up the command pip install -r requirements.txt should be installing the latest nerrs_data from github, but an older version is being installed. Somewhere a cache or something is coming in. Workaround is to docker exec into the container and manually pip install -r requirements.txt to install the latest.
on
docker compose up
the commandpip install -r requirements.txt
should be installing the latest nerrs_data from github, but an older version is being installed. Somewhere a cache or something is coming in. Workaround is todocker exec
into the container and manuallypip install -r requirements.txt
to install the latest.