fix: use correct Docker CLI download URL

This commit is contained in:
¨NW¨
2026-04-11 01:52:20 +01:00
parent 32a20234d4
commit fc72e54ced

View File

@@ -30,7 +30,7 @@ RUN apk add --no-cache \
curl \
bash \
netcat-openbsd \
&& curl -fsSL https://get.docker.com/builds/Linux/x86_64/docker-27.5.1.tgz -o /tmp/docker.tgz \
&& curl -fsSL "https://download.docker.com/linux/static/stable/x86_64/docker-27.5.1.tgz" -o /tmp/docker.tgz \
&& tar -xzf /tmp/docker.tgz -C /tmp \
&& mv /tmp/docker/docker /usr/local/bin/docker \
&& rm -rf /tmp/docker.tgz /tmp/docker \