Skip to content

Maintainers documentation

Erik Martin-Dorel edited this page Mar 23, 2025 · 5 revisions

How to locally test a docker-rocq PR

  • Update the images.yml file
  • Run ./external/docker-keeper/keeper.py write-artifacts
  • Inspect the generated/* files

How to install missing PyPI dependencies

If one gets the ModuleNotFoundError: No module named 'requests':

cd .../docker-rocq
python3 -m venv ./venv
source ./venv/bin/activate
python3 -m pip install --no-cache-dir --upgrade pip
python3 -m pip install --no-cache-dir -r external/docker-keeper/requirements.txt
Clone this wiki locally