Fix CI: install Docker on host runner, use correct image org
Some checks failed
CI / bump-infra (push) Blocked by required conditions
Build and push image / build (push) Failing after 4s
CI / build (push) Has been cancelled

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Philip Peterson 2026-06-08 19:27:41 -07:00
parent ce58e9db3b
commit 077cc53d27

View file

@ -6,19 +6,17 @@ on:
env: env:
REGISTRY: forge.quinefoundation.com REGISTRY: forge.quinefoundation.com
IMAGE: forge.quinefoundation.com/cold-air-networks/customer-riverside IMAGE: forge.quinefoundation.com/ironmagma/customer-riverside
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container:
image: docker:dind
options: --privileged
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Start Docker daemon - name: Install and start Docker
run: | run: |
apt-get update -qq && apt-get install -y --no-install-recommends docker.io
nohup dockerd &>/var/log/dockerd.log & nohup dockerd &>/var/log/dockerd.log &
until docker info >/dev/null 2>&1; do sleep 1; done until docker info >/dev/null 2>&1; do sleep 1; done