litellm/Dockerfile
2023-11-30 08:40:24 -08:00

17 lines
417 B
Docker

# Base image
FROM python:3.9-slim
# Copy the project files to the working directory
COPY litellm /app/litellm
# Set the working directory
WORKDIR /app/litellm
# Install the project dependencies
COPY requirements.txt /app/litellm/requirements.txt
RUN pip install -r requirements.txt
EXPOSE 4000/tcp
# Set the command to run when the container starts
CMD litellm --config /app/proxy_server_config.yaml --port 4000