Files
claude-code-proxy/Dockerfile
2025-07-04 15:18:14 +08:00

11 lines
238 B
Docker

FROM ghcr.io/astral-sh/uv:bookworm-slim
# Copy the project into the image
ADD . /app
# Sync the project into a new environment, asserting the lockfile is up to date
WORKDIR /app
RUN uv sync --locked
CMD ["uv", "run", "start_proxy.py"]