this repo has no description
0
fork

Configure Feed

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

fix(docker): use latest rust and debian images for anthropic-proxy

alice 06af883d 27eca9fc

+3 -2
+1
CLAUDE.md
··· 215 215 ``` 216 216 217 217 For more information, read the Bun API docs in `node_modules/bun-types/docs/**.mdx`. 218 +
+2 -2
Dockerfile.anthropic-proxy
··· 1 - FROM rust:1.75 as builder 1 + FROM rust:latest as builder 2 2 WORKDIR /app 3 3 # Clone directly - no local context needed 4 4 RUN git clone https://github.com/orual/anthropic-proxy.git . 5 5 RUN cargo build --release 6 6 7 - FROM debian:bookworm-slim 7 + FROM debian:latest 8 8 RUN apt-get update && apt-get install -y ca-certificates curl && rm -rf /var/lib/apt/lists/* 9 9 COPY --from=builder /app/target/release/anthropic-proxy /usr/local/bin/ 10 10 EXPOSE 4001