this repo has no description
0
fork

Configure Feed

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

fix(docker): pin base images and suppress apt prompts

Dockerfile.anthropic-proxy:
- Pin rust:latest → rust:1.92.0
- Pin debian:latest → debian:trixie-slim (Debian 13)
- Add DEBIAN_FRONTEND=noninteractive

Dockerfile:
- Add DEBIAN_FRONTEND=noninteractive

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

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

alice b91498c0 cf8db6d5

+4 -2
+1
Dockerfile
··· 15 15 # Production stage - smaller image 16 16 FROM oven/bun:1-slim AS production 17 17 WORKDIR /app 18 + ENV DEBIAN_FRONTEND=noninteractive 18 19 19 20 # Install curl for health checks 20 21 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
+3 -2
Dockerfile.anthropic-proxy
··· 1 - FROM rust:latest as builder 1 + FROM rust:1.92.0 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:latest 7 + FROM debian:trixie-slim 8 + ENV DEBIAN_FRONTEND=noninteractive 8 9 RUN apt-get update && apt-get install -y ca-certificates curl && rm -rf /var/lib/apt/lists/* 9 10 COPY --from=builder /app/target/release/anthropic-proxy /usr/local/bin/ 10 11 EXPOSE 4001