maybe skip docker cli install, docker in docker should work with the actions

This commit is contained in:
Luc Rose 2025-05-22 14:19:45 -04:00
parent 460e4344a2
commit a9c3d82108

View file

@ -18,20 +18,6 @@ jobs:
--env DOCKER_TLS_CERTDIR=
ports:
- 2375:2375
steps:
- name: Install Docker CLI
run: |
apt-get update
apt-get remove -y containerd || true
apt-get install -y docker.io
- name: Wait for Docker daemon
run: |
for i in $(seq 1 15); do
docker -H tcp://localhost:2375 info && break
sleep 2
done
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub