Skip to content

Commit db82687

Browse files
committed
removed install-docker-client as the gh actions image contains docker client by default
1 parent 54a3ea7 commit db82687

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

Makefile

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,8 @@ install-musl-cross-compilers:
3737
ln -sf /opt/aarch64-linux-musl-cross/bin/aarch64-linux-musl-gcc /usr/local/bin/aarch64-linux-musl-gcc
3838
ln -sf /opt/x86_64-linux-musl-cross/bin/x86_64-linux-musl-gcc /usr/local/bin/x86_64-linux-musl-gcc
3939

40-
# Install Docker client only (for debian:buster-slim containers - used by release workflows)
41-
.PHONY: install-docker-client
42-
install-docker-client:
43-
apt-get update
44-
apt-get install -y apt-transport-https ca-certificates curl gnupg
45-
mkdir -p /etc/apt/keyrings
46-
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
47-
echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian buster stable" > /etc/apt/sources.list.d/docker.list
48-
apt-get update
49-
apt-get install -y docker-ce-cli
50-
5140
.PHONY: release-workflow-deps
52-
release-workflow-deps: install-docker-client install-cross-compilers install-musl-cross-compilers
41+
release-workflow-deps: install-cross-compilers install-musl-cross-compilers
5342

5443
.PHONY: deps
5544
deps:

0 commit comments

Comments
 (0)