this repo has no description
0
fork

Configure Feed

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

feat(docker): add Dockerfile for anthropic-proxy service

Implements Dockerfile.anthropic-proxy (bead assistant-69t.2)

Multi-stage build:
- Stage 1 (builder): rust:1.75
- Clones https://github.com/orual/anthropic-proxy.git
- Builds release binary with cargo

- Stage 2 (runtime): debian:bookworm-slim
- Installs ca-certificates (for HTTPS) and curl (for health checks)
- Copies release binary from builder
- Exposes port 4001
- Runs anthropic-proxy directly

The anthropic-proxy service provides OAuth authentication for
Anthropic API access, allowing Letta to use Claude models via
a session-based proxy that handles the OAuth flow.

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

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

alice 03ee5969 3c2f75f4

+11
+11
Dockerfile.anthropic-proxy
··· 1 + FROM rust:1.75 as builder 2 + WORKDIR /app 3 + # Clone directly - no local context needed 4 + RUN git clone https://github.com/orual/anthropic-proxy.git . 5 + RUN cargo build --release 6 + 7 + FROM debian:bookworm-slim 8 + RUN apt-get update && apt-get install -y ca-certificates curl && rm -rf /var/lib/apt/lists/* 9 + COPY --from=builder /app/target/release/anthropic-proxy /usr/local/bin/ 10 + EXPOSE 4001 11 + CMD ["anthropic-proxy"]