build(litellm_server/main.py): accept config file in /chat/completions

This commit is contained in:
Krrish Dholakia 2023-10-27 10:46:25 -07:00
parent dca28667fa
commit cd9b671cfe
3 changed files with 8 additions and 8 deletions

View file

@ -1,11 +1,5 @@
FROM python:3.10
# Define a build argument for the config file path
ARG CONFIG_FILE
# Copy the custom config file (if provided) into the Docker image
COPY $CONFIG_FILE /app/config.yaml
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt