interactive intro to open social at-me.zzstoatzz.io

fix: copy static directory in dockerfile for favicon build

the favicon.svg is embedded at compile time via include_str!(), so the
static/ directory needs to be present in the build context

🤖 Generated with [Claude Code](https://claude.com/claude-code)

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

+1
+1
Dockerfile
··· 14 15 # Copy source code 16 COPY src ./src 17 18 # Build for release 19 RUN cargo build --release
··· 14 15 # Copy source code 16 COPY src ./src 17 + COPY static ./static 18 19 # Build for release 20 RUN cargo build --release