ci: fix docker missing issue
Build and Publish Docker Image / build-and-push (push) Failing after 29s
Unit test coverage / pytest (push) Successful in 1m39s
Unit test coverage / pytest (pull_request) Successful in 1m46s
/ build-and-push (push) Successful in 1m48s

This commit is contained in:
2025-07-21 18:25:02 +08:00
parent d8ab0b861d
commit bb5e147c63
+14
View File
@@ -37,6 +37,20 @@ jobs:
with:
ref: ${{ github.ref_name }}
# setup docker
- name: set up docker cli
run: |
apt-get install -y ca-certificates curl dnsutils
install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
chmod a+r /etc/apt/keyrings/docker.asc
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
$(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | \
tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install docker-ce-cli docker-buildx-plugin docker-compose-plugin
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2