This commit is contained in:
Nicolas Patry 2024-02-14 10:16:24 +00:00
parent 5b0befee43
commit ffa1804a34
1 changed files with 2 additions and 2 deletions

View File

@ -79,14 +79,14 @@ jobs:
- name: Install docker
run: |
apt-get update
apt-get install ca-certificates curl
apt-get install ca-certificates curl -y
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
# Add the repository to Apt sources:
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install docker-ce docker-ce-cli containerd.io
apt-get install docker-ce docker-ce-cli containerd.io -y
- name: Initialize Docker Buildx
uses: docker/setup-buildx-action@v3.0.0
with: