ci(build): use docker.io package instead of docker-ce in build jobs

The Debian Bullseye runner image doesn't have the Docker CE
repository configured. docker.io is available from default repos.
This commit is contained in:
2026-04-02 21:28:26 -04:00
parent ef97710d1c
commit 68ee19025a
+2 -2
View File
@@ -65,7 +65,7 @@ jobs:
- name: Install dependencies
shell: sh
run: |
apt-get update && apt-get install -y git docker-ce docker-ce-cli containerd.io
apt-get update && apt-get install -y git docker.io
- name: Checkout code
shell: sh
@@ -137,7 +137,7 @@ jobs:
- name: Install dependencies
shell: sh
run: |
apt-get update && apt-get install -y git docker-ce docker-ce-cli containerd.io
apt-get update && apt-get install -y git docker.io
- name: Checkout code
shell: sh