(feat) update dockerfile

This commit is contained in:
ishaan-jaff 2023-11-21 17:07:53 -08:00
parent 213b345a43
commit 38c1ee2349

16
Dockerfile Normal file
View file

@ -0,0 +1,16 @@
# Base image
FROM python:3.9-slim
# Set the working directory
WORKDIR /app
# Copy the project files to the working directory
COPY . /app
# Install the project dependencies
RUN pip install -r requirements.txt
WORKDIR /app/litellm/proxy
# Set the command to run when the container starts
CMD python3 proxy_cli.py --config hosted_config.yaml --port 4000