remove sudo references
Some checks reported warnings
Build Custom docker:dind image / build-container (push) Has been cancelled
Some checks reported warnings
Build Custom docker:dind image / build-container (push) Has been cancelled
This commit is contained in:
parent
8eda29aad6
commit
9c718fe59c
1 changed files with 2 additions and 2 deletions
|
@ -11,12 +11,12 @@ jobs:
|
|||
run: |
|
||||
apt-get install ca-certificates curl gnupg; \
|
||||
install -m 0755 -d /etc/apt/keyrings; \
|
||||
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg; \
|
||||
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; \
|
||||
echo \
|
||||
"deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \
|
||||
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
|
||||
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null; \
|
||||
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
|
||||
-
|
||||
|
|
Loading…
Reference in a new issue