ci(build): use docker.io package instead of docker-ce in build jobs
Test and Lint / test (push) Failing after 1m17s
Build and Push Docker Images / test (push) Successful in 2m57s
Build and Push Docker Images / build-frontend (push) Successful in 1m48s
Build and Push Docker Images / build-api (push) Successful in 3m9s

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 - name: Install dependencies
shell: sh shell: sh
run: | 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 - name: Checkout code
shell: sh shell: sh
@@ -137,7 +137,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
shell: sh shell: sh
run: | 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 - name: Checkout code
shell: sh shell: sh