You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The build automatically selects the correct release artifact for your build architecture using the BuildKit-provided `TARGETPLATFORM`/`TARGETARCH` arguments. Override the downloaded release by supplying `--build-arg ECHOKIT_VERSION=<version>` (for example `0.1.1`) if you want a different tag.
@@ -33,10 +33,9 @@ Use Buildx to produce and publish a multi-arch manifest in one command. BuildKit
33
33
```sh
34
34
docker buildx build \
35
35
--platform linux/amd64,linux/arm64 \
36
-
--push \
37
36
--build-arg ECHOKIT_VERSION=0.1.0 \
38
37
--tag secondstate/echokit:latest-server \
39
-
-f docker/server/Dockerfile .
38
+
.
40
39
```
41
40
42
41
Adjust `ECHOKIT_VERSION` as needed; omit the flag to fall back to the default version baked into the Dockerfile.
0 commit comments