add docker-ce-cli
docker / docker (push) Failing after 53s

This commit is contained in:
Ludovic Cartier
2025-01-03 20:46:41 +01:00
parent 189e95ff6f
commit ab119cf6fa
+9 -1
View File
@@ -15,7 +15,15 @@ jobs:
- name: manually install nodeJS & git - name: manually install nodeJS & git
run: | run: |
apt update apt update
apt install -y nodejs git apt install -yq nodejs git
- name: manually install docker-ce-cli
run: |
install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
chmod a+r /etc/apt/keyrings/docker.asc
apt update
apt install -yq docker-ce-cli
- uses: actions/checkout@v4 - uses: actions/checkout@v4
# with: # with: