interactive intro to open social

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>

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