mirror of
https://github.com/fuergaosi233/claude-code-proxy.git
synced 2025-07-26 20:20:31 +03:00
11 lines
238 B
Docker
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"]
|