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: add -Dtarget=x86_64-linux-gnu to remote build

Without this flag, zig links against the host's glibc (2.39 on Ubuntu
24.04), which is newer than the runtime container's (2.36 on Debian
bookworm-slim). The -Dtarget flag makes zig use its bundled libc.

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

zzstoatzz 0dc349d2 08a45756

+1 -1
+1 -1
justfile
··· 371 371 git pull --ff-only 372 372 373 373 echo "==> building binary" 374 - zig build -Doptimize=ReleaseSafe 374 + zig build -Doptimize=ReleaseSafe -Dtarget=x86_64-linux-gnu 375 375 376 376 echo "==> building container image" 377 377 buildah bud -t atcr.io/zzstoatzz.io/zlay:latest -f Dockerfile.runtime .