gitextract_1r_6ch8g/ ├── .github/ │ └── workflows/ │ └── build-test-deploy.yml ├── .gitignore ├── COPYING ├── LICENSE ├── README.md ├── build-install-dumb-init.sh ├── build_container.sh ├── buildall.sh ├── deploy.sh ├── distro-entry.sh ├── dockerfiles/ │ ├── alma/ │ │ ├── alma-8/ │ │ │ └── alma-8-base/ │ │ │ └── Dockerfile │ │ └── alma-9/ │ │ └── alma-9-base/ │ │ └── Dockerfile │ ├── debian/ │ │ ├── debian-10/ │ │ │ └── debian-10-base/ │ │ │ └── Dockerfile │ │ ├── debian-11/ │ │ │ └── debian-11-base/ │ │ │ └── Dockerfile │ │ └── debian-12/ │ │ └── debian-12-base/ │ │ └── Dockerfile │ ├── fedora/ │ │ ├── fedora-39/ │ │ │ └── fedora-39-base/ │ │ │ └── Dockerfile │ │ └── fedora-40/ │ │ └── fedora-40-base/ │ │ └── Dockerfile │ ├── opensuse/ │ │ ├── opensuse-15.4/ │ │ │ └── opensuse-15.4-base/ │ │ │ └── Dockerfile │ │ ├── opensuse-15.5/ │ │ │ └── opensuse-15.5-base/ │ │ │ └── Dockerfile │ │ └── opensuse-15.6/ │ │ └── opensuse-15.6-base/ │ │ └── Dockerfile │ ├── templates/ │ │ └── Dockerfile.builder │ └── ubuntu/ │ ├── ubuntu-18.04/ │ │ └── ubuntu-18.04-base/ │ │ └── Dockerfile │ ├── ubuntu-20.04/ │ │ └── ubuntu-20.04-base/ │ │ └── Dockerfile │ ├── ubuntu-22.04/ │ │ └── ubuntu-22.04-base/ │ │ └── Dockerfile │ └── ubuntu-24.04/ │ └── ubuntu-24.04-base/ │ └── Dockerfile ├── helpers/ │ └── runbitbake.py ├── install-buildtools-make.sh ├── install-buildtools.sh └── tests/ ├── container/ │ ├── smoke.sh │ ├── vnc-in-container-test.sh │ └── vnc-test.sh └── unit/ ├── signals/ │ └── bitbake └── test_runbitbake.py