forgot to -yqq apt-get install in docker setup for CI
Deploy / Deploy (push) Failing after 20s
Details
Deploy / Deploy (push) Failing after 20s
Details
This commit is contained in:
parent
22bffd0f84
commit
0163611495
|
@ -10,8 +10,8 @@ jobs:
|
|||
- name: Docker install
|
||||
run: |
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
apt update
|
||||
apt install ca-certificates curl
|
||||
apt-get update
|
||||
apt-get install ca-certificates curl
|
||||
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
|
||||
|
@ -20,7 +20,7 @@ jobs:
|
|||
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
|
||||
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 -yqq docker-ce docker-ce-cli containerd.io
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
- name: Docker Login
|
||||
|
|
Loading…
Reference in New Issue