Update apt command to reflect reality inside container
Some checks failed
Build Custom docker:dind image / build-container (push) Failing after 1m39s
Some checks failed
Build Custom docker:dind image / build-container (push) Failing after 1m39s
This commit is contained in:
parent
9c718fe59c
commit
92ec6e28b0
1 changed files with 1 additions and 2 deletions
|
@ -9,7 +9,6 @@ jobs:
|
|||
-
|
||||
name: Prepare Container Environment
|
||||
run: |
|
||||
apt-get install ca-certificates curl gnupg; \
|
||||
install -m 0755 -d /etc/apt/keyrings; \
|
||||
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg; \
|
||||
chmod a+r /etc/apt/keyrings/docker.gpg; \
|
||||
|
@ -18,7 +17,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 docker-buildx-plugin docker-compose-plugin
|
||||
apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
|
Loading…
Reference in a new issue