Files
llmproxy/Dockerfile
2026-01-12 14:12:15 +08:00

12 lines
265 B
Docker

FROM hub.rat.dev/library/python:3.10-alpine
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -i https://pypi.tuna.tsinghua.edu.cn/simple -r requirements.txt
COPY . .
CMD ["uvicorn", "app.ghcproxy:app", "--host", "0.0.0.0", "--port", "8000"]