mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-14 23:21:35 +00:00
13 lines
192 B
Docker
13 lines
192 B
Docker
FROM python:3.12-slim-bookworm
|
|
|
|
RUN pip install --no-cache-dir fastapi uvicorn pydantic
|
|
|
|
COPY server.py /app/server.py
|
|
|
|
WORKDIR /app
|
|
|
|
EXPOSE 10000
|
|
|
|
ENV PORT=10000
|
|
|
|
CMD ["python", "server.py"]
|