97dedd3424
CI / Build Native (push) Failing after 0s
The container doesn't have docker, so docker build/docker push fails with 'docker: not found'. Fix: - Add docker.io to the apt-get install step (inside the container) - Mount the host's docker.sock into the container via volumes: so the in-container docker CLI talks to the host's docker daemon (same model as Docker-in-Docker but using the host socket). The runner has the docker label, so the host socket is available. Now the whole pipeline (build native binary, build container image, push to registry) runs in a single job without any artifact upload/download between jobs.