Skip to content

Commit b7de08a

Browse files
fix(infra): correct docker buildx download URL for arm64
The previous URL used the "latest" redirect which may not always point to the correct v0.17.1 release. Use the explicit release download URL to ensure consistent installation.
1 parent 74bf691 commit b7de08a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/infra/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ mkdir -p /usr/local/lib/docker/cli-plugins
8888
curl -SL https://github.com/docker/compose/releases/latest/download/docker-compose-linux-aarch64 -o /usr/local/lib/docker/cli-plugins/docker-compose
8989
chmod +x /usr/local/lib/docker/cli-plugins/docker-compose
9090
91-
curl -SL https://github.com/docker/buildx/releases/latest/download/buildx-v0.17.1.linux-arm64 -o /usr/local/lib/docker/cli-plugins/docker-buildx
91+
curl -SL https://github.com/docker/buildx/releases/download/v0.17.1/buildx-v0.17.1.linux-arm64 -o /usr/local/lib/docker/cli-plugins/docker-buildx
9292
chmod +x /usr/local/lib/docker/cli-plugins/docker-buildx
9393
9494
# Cria pasta do projeto

0 commit comments

Comments
 (0)