declarative relay deployment on hetzner relay-eval.waow.tech
atproto relay
14
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: zlay-publish uses multi-stage docker build (no cross-compile)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

zzstoatzz 2ae12ebe 0706a2b8

+1 -2
+1 -2
justfile
··· 350 350 echo "kubeconfig written to zlay-kubeconfig.yaml" 351 351 KUBECONFIG=zlay-kubeconfig.yaml kubectl get nodes 352 352 353 - # build and push zlay image (cross-compile on host, tiny docker image) 353 + # build and push zlay image (multi-stage docker build, compiles natively in x86_64 container) 354 354 zlay-publish: 355 355 #!/usr/bin/env bash 356 356 set -euo pipefail ··· 358 358 trap "rm -rf $TMPDIR" EXIT 359 359 git clone --depth 1 https://tangled.org/zzstoatzz.io/zlay "$TMPDIR" 360 360 cd "$TMPDIR" 361 - zig build -Dtarget=x86_64-linux -Doptimize=ReleaseSafe 362 361 docker build --platform linux/amd64 -t atcr.io/zzstoatzz.io/zlay:latest . 363 362 ATCR_AUTO_AUTH=1 docker push atcr.io/zzstoatzz.io/zlay:latest 364 363